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

作业

score = input('Please enter your score:') score = int(score) if score <= 60: print('Flunk') elif score >=60 and score <= 70: print('pass') elif score >= 70 and score <= 80: print('Good') elif score >= 80: print('Great')


登录后评论