返回列表 發帖

if...else

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

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

TOP

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

TOP

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

TOP

score=input("請輸入你的成績: ")
score=float(score)
if(score>=60):
    print("恭喜你!及格了!")
else:
    print("不及格~斬!")

TOP

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

TOP

返回列表