-1
car = input("Audi TT + Licence + Tax: 4000")
car = int(car)
insurance = int(input("Insurance: 1500 "))
petrol= int(input("Petrol Per Month: 250*12 "))
dealerprep= int(input(input("Dealer Prep: 2000: "))
total = car + insurance + petrol + dealerprep
print("\nGrand Total :", total)
input("\n\nPress the enter key to exit.")
顯然總數是錯誤的?我想知道它爲什麼這樣說,因爲它以前沒有。可能是我可憐的編碼!任何想法的語法錯誤是什麼?
你試圖值傳遞給'input'通過提示?而且,'input(input(...))'沒有多大意義。 – ForceBru
'輸入(輸入(「我應該問你什麼問題?))':p – spectras
@ForceBru冷靜的完成,我只是剛剛開始編程,所以我一定會弄錯事情! –