返回列表 發帖
  1. score = eval(input("enter your score: "))
  2. if score >= 60:
  3.     print("pass")
  4. elif score < 60:
  5.     print("fail")
複製代碼

TOP

返回列表