我在以下位置输入
password=int(input("What is the password?")
if password == 2019:
print ("You got it right!")
else:
print ("You got it WRONG!")
它说第一个打印语句是无效的语法
答案 0 :(得分:1)
朋友,您需要在与int函数相对应的行的结尾处关闭一个括号。
password=int(input("What is the password?"))
答案 1 :(得分:0)
这应该有效:
password=int(input("What is the password?"))
if password == 2019:
print("You got it right!")
else:
print("You got it WRONG!")
在使用python投射项目时,请确保合上括号