Python程序笔记2023003
摘要:
成绩评级程序 分数 < 60,D 60 <= 分数 < 80,C 80 <= 分数 < 90,B 90 <= 分数 < 100,A 分数 == 100,S # 输入分数 score = int(input("请输入分数:")) # 判断评级 if score < 0 or score > 100: 阅读全文
posted @ 2023-04-11 12:19 Tauseer 阅读(169) 评论(0) 推荐(0) 编辑