赞
踩
score = int(input('分数:'))
if score >= 60 and score < 70:
print('及格')
elif 70 <= score < 80:
print('良')
elif 80 <= score < 90:
print('好')
elif score >= 90:
print('优秀')
else:
print('你要努力了')
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。