Board logo

標題: if...else [打印本頁]

作者: tonyh    時間: 2022-6-30 15:19     標題: if...else

本帖最後由 tonyh 於 2022-6-30 15:42 編輯

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

作者: 李沛昂    時間: 2022-6-30 15:59

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

作者: 王捷恩    時間: 2022-6-30 16:01

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





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2