📜  如何在 python turtle 中使用 goto - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:35.648000             🧑  作者: Mango

代码示例1
#Draw a set of nested squares, increasing in size
from turtle import *

number_of_shapes = 4

for shape in range(1, number_of_shapes + 1):
    #Draw a square
    for sides in range(1,5):
        forward(20 + shape * 10)
        right(90)

#Move to position of next square
    penup()
    goto(shape * 10, shape * 10)
    pendown()