标签:put inpu python3 input print python3.7 core pytho 分数
score = int (input (‘请教您的分数:‘))
if 100 >= score >= 90:
print (‘A‘)
else:
if 90 > score >= 80:
print (‘B‘)
else:
if 80 > score >= 60:
print (‘C‘)
else:
if 60 > score >= 0:
print (‘D‘)
else:
print (‘输入错误!‘)
标签:put inpu python3 input print python3.7 core pytho 分数
原文地址:https://www.cnblogs.com/liangbannerhulk/p/10105358.html