《老鸟python 系列》视频上线了,全网稀缺资源,涵盖python人工智能教程,爬虫教程,web教程,数据分析教程以及界面库和服务器教程,以及各个方向的主流实用项目,手把手带你从零开始进阶高手之路!点击 链接 查看详情
user_image
高高
2020年5月31日 13:00

score = int(input('输入分数:'))
if score >= 90:
    print('优秀')
elif score >=80:
    print('良好')
elif score >= 70:
    print('中等')
elif score >=60:
    print('及格')
elif score >= 0:
    print('不及格')
else:
    print('输入错误!')

登录后评论