五角星

import turtle

turtle.pensize(4)
turtle.pencolor("yellow")
turtle.fillcolor("red")

turtle.begin_fill()
for _ in range(5):
    turtle.forward(200)
    turtle.right(144)
    turtle.end_fill()

  

posted @ 2020-03-14 12:08  林晓婷  阅读(120)  评论(0)    收藏  举报