Dear-织梦仙人 发表于 2020-11-23 18:47:57

请问这个那里出错了?

temp = int(input('请输入一个年份:'))
       print(temp)
SyntaxError: multiple statements found while compiling a single statement

Twilight6 发表于 2020-11-23 18:49:43



print 前面缩进去掉,缩进不能乱用,一般用于 条件语句和循环语句

temp = int(input('请输入一个年份:'))
print(temp)

Dear-织梦仙人 发表于 2020-11-23 19:04:08

哦哦,谢谢啦!

冬雪雪冬 发表于 2020-11-23 19:26:21

SyntaxError: multiple statements found while compiling a single statement
不要在交互模式 >>> ,粘贴多行语句

qiuyouzhi 发表于 2020-11-23 19:32:25

Dear-织梦仙人 发表于 2020-11-23 19:04
哦哦,谢谢啦!

如果问题已解决, 请设置【最佳答案】
页: [1]
查看完整版本: 请问这个那里出错了?