我在用着processing.py
我正在关注这个 tut (Java)
https://www.youtube.com/watch?v=H7frvcAHXps
我想知道我是否可以在 python 中使用相同类型的 for 循环
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 中使用相同类型的嵌套 for 循环(在单行上)