Python 入門指南 5.0
exercise0609.py
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | # 使用者輸入分數 score = int(input("請輸入分數:")) # 依分數印出評語 match score: case 100: print("Perfect!") case s if 90 <= s < 100: print("Excellent!") case s if 80 <= s < 90: print("Great!") case s if 70 <= s < 80: print("Good!") case s if 60 <= s < 70: print("Not Bad!") case s if s < 60: print("Bad!") case _: print("That's impossible!!") # 檔名: exercise0609.py # 說明:《Python入門指南》的練習 # 網站: http://kaiching.org # 作者: 張凱慶 # 時間: 2023 年 8 月 |