它这个 !=是什么意思?
score = input("请输入你的分数:")while score != 'e':
score = int(score)
if score < 60:
print("D")
if 60 <= score < 80:
print("C")
if 80 <= score < 90:
print("B")
if 90 <= score < 100:
print("A")
if score == 100:
print("S")
score = input("请输入你的分数:") 本帖最后由 临时号 于 2022-8-6 16:25 编辑
不等于运算符
详见->https://www.runoob.com/python3/python3-basic-operators.html 不等于的意思
score 等于 e 就不进行循环 不等于的意思
就是score 不等于字母 e !=,即不等于,如8!=9
详见:https://www.runoob.com/python3/python3-basic-operators.html 鱼C论坛讲解:https://fishc.com.cn/forum.php?mod=viewthread&tid=150253&extra=page%3D1%26filter%3Dtypeid%26typeid%3D769 比较对象是否相等 比较运算符 :
等于 ==
大于 >
大于等于 >=
小于 <
小于等于 <=
不等于 != 不等于,另,感叹号与等号不留空格 不等于可以用<>和!=在python3里面<>不能直接用了 !=可以直接用 当输入的score等于'e'时,循环退出,!=就是不等于,1!=1是不成立的,1+2!=2+2是成立的 !=,就表示不等于,在python2的语法中,不等于不用!=而用<> >>> 1 != 2
True
>>> 1 != 1
False
页:
[1]