返回列表 發帖

if...else

本帖最後由 tonyh 於 2022-3-26 15:40 編輯

  1. score=input("請輸入你的成績: ")
  2. score=float(score)
  3. if score>=60:
  4.     print("恭喜你!及格了!")
  5. else:
  6.     print("不及格~斬!")
複製代碼

  1. score = int(input("Entre your score :"))
  2. if (score >= 60):
  3.     print("Nice Work")
  4. else:
  5.     print("Improve Next Time")
複製代碼

TOP

返回列表