-6

我在用着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 循环(在单行上)

4

1 回答 1

2

这在 python 中是等价的。In和是范围的边界,并且range(0, height, cellSize)是out 计数器增量的数量。0heightcellSize

for y in range(0, height, cellSize):
    for x in range(0, width, cellSize):
        rect(x, 0, cellSize, cellSize)
于 2017-02-01T13:58:17.627 回答