15623339876 发表于 2019-1-25 13:58:14

零基础 求帮助 请问问题出在哪?

scoer = int(input("请输入一个数值?:"))
if 100 >= score >90:
    print("A")
else:
    if 90 >= secoer >80:
      print("B")
    else:
      if 80 >= secoer >70:
            print("c")
      else:
            print("成绩不合格:")
            


================== RESTART: C:/Users/we/Documents/4.2-kh.py ==================
请输入一个数值?:85
Traceback (most recent call last):
File "C:/Users/we/Documents/4.2-kh.py", line 2, in <module>
    if 100 >= score >90:
NameError: name 'score' is not defined

sunrise085 发表于 2019-1-25 14:30:43

。。。。。。。。。。你看看你程序第一行的变量定义。。。。。。。

新手·ing 发表于 2019-1-25 15:10:53

把你程序中的所有score都拼对了。

回眸笑傾城 发表于 2019-1-29 01:45:33


scoer = int(input("请输入一个数值?:"))
if 100 >= score >90:
    print("A")
else:
    if 90 >= secoer >80:
      print("B")
    else:
      if 80 >= secoer >70:
            print("c")
      else:
            print("成绩不合格:")
{:5_92:}

清风明月星 发表于 2019-1-29 14:14:27

你看下错误信息提示,是你的第二行代码中的变量scoer拼写成了score了。
页: [1]
查看完整版本: 零基础 求帮助 请问问题出在哪?