为什么我的第二出错了
>>> b=' '
>>> print('hello,', b or 'world')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'tuple' object is not callable
>>> b=' '
>>> print('hello,', b or 'world')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'tuple' object is not callable
2021-04-04
举报