返回列表 發帖
回復 1# tonyh
  1. score=input("enter your score: ")
  2. score=float(score)
  3. if(score>=90 and score<=100):
  4.     print("Congrats you passed!")
  5. elif(score>=80 and score<90):
  6.     print("u pass with nice")
  7. elif(score>=70 and score<80):
  8.     print("you kinda dumb but you still passed")
  9. elif(score>=0 and score<70):
  10.     print("you dumb jus like hudson he is dumb dumb -5 iq")
  11. else:
  12.     print("that aint no score you hudson?!")
複製代碼

TOP

返回列表