if语句判断用户输入成绩后属于那个级别
score = int (input("score:"))
if score >90:
print("A")
elif score>60:
print("B")
else:
print("C")
python程序
原文:https://www.cnblogs.com/Zoop0102/p/15074520.html