追追比

导航

五角星

import turtle


turtle.fillcolor("red")
turtle.begin_fill()

while True:
    turtle.forward(220)
    turtle.right(144)
    if abs(turtle.pos()) < 1:
        break

turtle.fd(84)
for i in range(5):
    turtle.fd(52)
    turtle.right(72)
turtle.end_fill()
turtle.done()

 

posted on 2020-09-14 20:12  追追比  阅读(35)  评论(0编辑  收藏  举报