|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
Traceback (most recent call last):
File "<pyshell#37>", line 1, in <module>
print( "我每天爱你三千遍!" * 3000)
TypeError: 'str' object is not callable
>>> print("我每天爱你三千遍!" * 3000 )
Traceback (most recent call last):
File "<pyshell#38>", line 1, in <module>
print("我每天爱你三千遍!" * 3000 )
TypeError: 'str' object is not callable
>>> print('我每天爱你三千遍!' * 3000 )
Traceback (most recent call last):
File "<pyshell#39>", line 1, in <module>
print('我每天爱你三千遍!' * 3000 )
TypeError: 'str' object is not callable
>>>
>>> print('我每天爱你三千遍!' * 3000 )
Traceback (most recent call last):
File "<pyshell#41>", line 1, in <module>
print('我每天爱你三千遍!' * 3000 )
TypeError: 'str' object is not callable
>>> print("爱你三千遍" * 3000)
SyntaxError: invalid character in identifier
>>> print("爱你三千遍" * 3000 )
SyntaxError: invalid character in identifier
>>>
>>> print("爱你三千遍!" * 3000 )
SyntaxError: invalid character in identifier
>>> print("爱你三千遍!" * 3000 )
SyntaxError: invalid character in identifier
>>> print("爱你三千遍!" * 3000 )
SyntaxError: invalid character in identifier
>>> print("爱你三千遍!" * 3000 )
SyntaxError: invalid character in identifier
>>> c
求解
|
|