自制变量不在python中工作

时间:2017-05-16 19:48:37

标签: python

嘿所有人,当我谈到蟒蛇时,我都会放弃一个菜鸟,而我正在玩一个未完成的标记,我已经开始上课了。一切正常,直到'如果第二个==是:'在undefined中它表示是的。我该如何解决这个问题?!?!?!再次,我是一个菜鸟,我认为这个网站是最容易得到答案的地方(除了学校,但我cba)。谢谢你的帮助!

print("-------WELCOME-------")

testscore = int(input("What mark did you get?"))

if testscore> 75:
    print("You got an A!")
else:
    if testscore< 30:
        print("You got an F")

second = input("do you want to get another test score?")
if second == yes:
    if testscore> 75:
        print("You got an A!")
else:
    if testscore< 30:
        print("You got an F")
if second == no:
    print("Thanks for using MARK TO GRADE CONVERTER. See you soon!")

1 个答案:

答案 0 :(得分:0)

你需要把它放在引号中:

if second == "yes":

原样,你没有比较字符串,你正在检查second是否等于一个名为yes的变量,它不存在。