-6
我不知道我做錯了,這是我做了什麼挑一些神交
number = int(input("Pick a number: "))
if number==42
print("You guessed right!")
我得到一個語法錯誤。
我不知道我做錯了,這是我做了什麼挑一些神交
number = int(input("Pick a number: "))
if number==42
print("You guessed right!")
我得到一個語法錯誤。
如果這是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
您在第一行缺少右括號,第二行爲冒號,第三行爲縮進。 – Kevin