选择一个号码

时间:2015-10-15 14:03:16

标签: python-3.x

我不确定我做错了这就是我所做的

number = int(input("Pick a number: "))
if number==42
print("You guessed right!")

我收到语法错误。

2 个答案:

答案 0 :(得分:1)

如果这是python,则需要执行以下操作。

 number = int(input("Pick a number: "))
 if (number==42) : #dont forget about your : after if, elif, else, for, while, and function calls
     print("You guessed right!")  #need to indent

答案 1 :(得分:0)

如果您想进一步完善代码,也可以使用float这样的语句使其包含小数:

number = float(input("Pick a number: "))
if number == 42:
  print("You guessed right!")

我希望这个答案会有所帮助。