星星

import turtle

turtle.bgcolor('yellow')
turtle.pencolor('green')
turtle.fillcolor('green')
turtle.begin_fill()

for i in range(5):
    turtle.forward(100)
    turtle.right(144)

turtle.end_fill()
turtle.done()

 

posted on 2018-05-09 21:12  八达岭  阅读(101)  评论(0)    收藏  举报