第六讲课后作业
score=input('请输入你的分数')while score!='e':
score=int("score")
if score<60:
print("D")
else:
if 60<=score<80:
print("C")
else:
if 80 <= score < 90:
print("B")
else:
if 90 <= score < 100:
print("A")
else:
print("S")
score = input("请输入你的分数:")
为什么会一直ValueError: invalid literal for int() with base 10: 'score',报这个错误
此外,为什么还要加一句score = input("请输入你的分数:") 您代码中有一些小问题,我来帮您调整一下:
1. int("score") 应该是 int(score)。这部分需要传递变量,而不是字符串。
2. 您的 if score 语句需要条件判断,您可以根据需要来判断分数范围。
这是一个修正后的代码示例:
score = input('请输入你的分数:')
while score != 'e':
score = int(score)
if score >= 90:
print("优秀")
elif 80 <= score < 90:
print("良好")
elif 70 <= score < 80:
print("中等")
elif 60 <= score < 70:
print("及格")
else:
print("不及格")
score = input('请输入你的分数(输入'e'退出):')
修改后,如果输入的分数在不同范围内,会输出相应的成绩评定。在输入 'e' 时,程序会终止。请根据需要替换分数范围条件。
以上回复来自 FishC AI 小助理,如未能正确解答您的问题,请继续追问。
页:
[1]