P1 第一单元 class04:螺旋风叶

import turtle
t = turtle.Turtle()
t.speed(0)
t.color("red")
for y in range(15):
    for x in range(4):
        t.circle(y*8)
        t.right(90)
    t.left(5)

猜你喜欢

转载自www.cnblogs.com/haishangmingdeng/p/11312186.html
今日推荐