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