13597595582 发表于 2021-9-30 10:14:14

国旗绘制。源码

t.goto(-100, 0)
t.pendown()
t.goto(-100, -100)
t.goto(100, -100)
t.goto(100, 0)
t.goto(-100, 0)
t.end_fill()
#画笔填充颜色黄
t.color('yellow')
#绘制五角星
def A(x,y,z):
t.penup()
t.goto(x, y)
t.setheading(0)
t.pendown()
t.begin_fill()
t.right(72)
t.forward(z)
a=0
while (a<4):
    t.right(144)
    t.forward(z)
    a=a+1
t.end_fill()
A(-80,-10,30)
A(-60,-5,10)
A(-53,-17,10)
A(-53,-29,10)
A(-60,-41,10)
t.hideturtle()
页: [1]
查看完整版本: 国旗绘制。源码