while True: # 提示如何中斷程式 print("隨時輸入quit來結束") # 取得身高 weight = input("請輸入體重(kg):\n") # 判斷是否為quit if weight=='quit': break else: ...
確定! 回上一頁