一行,一个整数(0~30),表示KiKi挂的科目累计的学分。
一行,根据输入的挂科学分,输出相应学习情况(Danger++,Danger,Good)。
14
Danger++
9
Danger
1
Good
score=int(input("请输入所挂学分")) if score >= 10: print("Danger++") elif score >=4 and score <=9 : print("Danger") elif score >=0 and score <=3: print("Good")