Python 单行 for 循环

Python single line for loops

我正在使用 processing.py

我在关注这个图 (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 循环(在一行中)

这等同于 python。在range(0, height, cellSize)中,0height是范围的界限,cellSize是多少out计数器增量。

for y in range(0, height, cellSize):
    for x in range(0, width, cellSize):
        rect(x, 0, cellSize, cellSize)