我正在寫一個非常簡單的程序,使用for循環輸出數字0-10。然而,當我點擊運行時,會出現語法錯誤,在第8行中用紅色突出顯示「=」。我不明白爲什麼它是錯的?我在空閒模式下使用python 3.5.2。不理解錯誤消息:for語句中的語法無效
def numbers():
print ("This program will count to ten, just you wait...")
import time
time.sleep(1)
print ("\n\nLiterally wait I just need to remember base 10 because I
only work in binary!")
time.sleep(4)
int(counter) = 0
for counter <**=** 9:
print ("\n" + counter)
counter = counter + 1
print ("\n\nAnd there you go. Told you I could do it. Goodbye :) ")
time.sleep(2)
exit()
numbers()
你'for'聲明是無效的。您正在尋找'while',或[Python文檔](http://python.org)。 –
'int(counter)= 0'是什麼意思?這是無效的Python語法。它應該讀'counter = 0'。 –