摘要: if语句判断用户输入成绩后属于那个级别 score = int (input("score:")) if score >90: print("A") elif score>60: print("B") else: print("C") 阅读全文
posted @ 2021-07-29 12:27 张纪勇 阅读(128) 评论(0) 推荐(0)