本帖最後由 張晏齊 於 2022-7-19 11:00 編輯
- # -*- coding: utf-8 -*-
- """
- Spyder Editor
- This is a temporary script file.
- """
- score=eval(input("請輸入你的成績: "))
- if score>=90 and score <=100:
- print("優等!")
- elif score>=80 and score<89:
- print("甲等" )
- elif score>=70 and score<79:
- print("乙等" )
- elif score>=60 and score<69:
- print("可憐哪")
- elif score>=0 and score<59:
- print("不及格!")
- else:
- print("輸入錯誤!")
複製代碼 |