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

score = input("输入分数:")
score =int(score)
if score >= 80 and score <100:
    print("优秀")
elif score >= 70 and score < 80:
    print("良好")
elif score >= 60 and score < 70:
    print("及格")
elif score < 60:
    print("不及格")

登录后评论