試圖編寫一個簡單的程序,介紹課程Comp Comp in Uni。只需編寫一個Python錯誤,讀取數字輸入並打印出來,如果它們不是按遞增順序排列的話。Python語法錯誤與變量
我有我的想法會工作,但它一直給我一個語法錯誤,我想不通爲什麼,請注意我有零編程經驗
n = input
counter = input
nonincreasing = True
While counter <= n and nonincreasing = True
get a value for nextnumber
在行While counter <= n and nonincreasing = True
它不斷給我counter
是一個語法錯誤。
'while'應該全部小寫,並且你不能同時子句中使用賦值運算符。 – falsetru
縮進是錯誤的,雖然應該很小,但缺少':'和'='應該是== == –
語法錯誤的stackoverflow是你的解釋器/編譯器。嘗試學習閱讀它的輸出。 (一個較少的錯誤版本應該是:''while counter <= n且nonincreasing == True:...'')。 – miku