画一颗小小五角红星

import turtle

turtle.color('black','red')
turtle.pensize(5)
turtle.begin_fill()
for i in range(5):
    turtle.fd(200)
    turtle.rt(144)
    
turtle.end_fill()
a little red star

原文地址:https://www.cnblogs.com/yeluozhiqiumax/p/12465982.html