1

我收到一个错误

invalid syntax

当我运行以下代码时:

print("Hello how old are you?(years)"
print ("(1) 0-10")      
print ("(2) 11-20")
print ("(3) 21-30")
print ("(4) 31-40")
print ("(5) 41-50")
print ("(6) 51-60")
print ("(7) 61-70")
print ("(8) 71-80")
print ("(9) 81-90")
print ("(10)90+")
  c=input
  if int(c)==1
print ("")

在这条线上

print ("(1) 0-10")

它说 print 是无效的语法,如果我删除该行,它会移至下一行,依此类推。请问我可以在这里帮忙吗?谢谢!

4

1 回答 1

8
print("Hello how old are you?(years)") # <== missing this )

您的下一个语法错误可能如下:

c=input() # <== missing ()

if int(c)==1: # <== missing :
    print ("") # missing indentation  

仅供参考,只要您遇到那种if i delete that line it moves on to the next, and so on.可能意味着语法错误不在该行而是在其前面的行的行为。

于 2013-11-14T19:01:15.087 回答