我使用processing.py的Python for循環
我在下面這個嘖嘖(JAVA)
https://www.youtube.com/watch?v=H7frvcAHXps
,我想知道如果我可以使用相同類型的單行環在python
for(int y = 0; y < height; y = y + cellSize):
for(int x = 0; x < width; x = x + cellSize):
rect(x, 0, cellSize, cellSize)
我收到一個錯誤,當我嘗試運行代碼:
processing.app.SketchException: Maybe there's an unclosed paren or quote mark somewhere before this line?
我想有在python
嗨,歡迎來到SO,'for'循環在Python中不起作用。請檢查基本教程,如https://wiki.python.org/moin/ForLoop –
您也遺漏了'public static void main'位。 –