五角星绘制

> import turtle
>>> turtle.setup(500,500)
>>> turtle.fillcolor("red")
>>> turtle.begin_fill()
>>> for i in range(5):
	turtle.fd(200)
	turtle.right(144)

	
>>> turtle.write('巫雪如',font=('宋体',20,'normal'))
>>> turtle.end_fill()
>>> turtle.done()

  

posted @ 2020-09-15 20:43  whispe  阅读(145)  评论(0)    收藏  举报