age = int(input("Enter your age: ")) print("Next year you will be...
這裡同時出現兩個問題 input 取得是 字串 ,不是 數字 導致後來 age + "1" = "71",而不是期望的...