为什么这段代码错了?有时会出现语法错误

时间:2014-11-08 18:50:15

标签: python

time=int(input("How long do you spend on the computer per day?"))  
IF time =<2
print("that seems reasonable")

第二行time出现语法错误,我不知道出了什么问题。

1 个答案:

答案 0 :(得分:2)

  • python中没有IF,你的意思是if
  • 另外,您的意思是>=而不是=>
  • 此外,您需要:声明
  • 末尾的if

所以你走了:

time= int(input('How long do you spend on the computer? '))
if time >= 2:
    print('That seems reasonable')