鱼C论坛

 找回密码
 立即注册
查看: 966|回复: 2

[已解决]为什么是错的,检查很多遍了

[复制链接]
发表于 2020-9-12 10:47:36 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

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





求解
最佳答案
2020-9-12 10:50:17
print的右括号打成中文的了
改成这样
print("爱你三千遍!" * 3000)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-9-12 10:50:17 | 显示全部楼层    本楼为最佳答案   
print的右括号打成中文的了
改成这样
print("爱你三千遍!" * 3000)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-9-12 10:54:56 | 显示全部楼层
print("爱你三千遍!",end='\n' * 3000)
注意一下,运行这个程序你的电脑可能会死机
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-18 18:15

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表