我正在尝试打印“好的,谢谢”。当我在 shell 上运行它时,它会在单独的行上打印,并且“谢谢”在“好的”之前打印。谁能帮助我做错了什么?
>>> test1 = Two()
>>> test1.b('abcd')
>>> thanks
>>> okay
我的代码
class One:
def a(self):
print('thanks')
class Two:
def b(self, test):
test = One()
print('okay', end = test.a())