五角星

Posted 超级kunkun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了五角星相关的知识,希望对你有一定的参考价值。

>>> import turtle
>>> turtle.setup(600,400,0,0)
>>> turtle.bgcolor("red")
>>> turtle.color("yellow")
>>> turtle.fillcolor("yellow")
>>> turtle.begin_fill()
>>> for i in range(5):
	turtle.forward(200)
	turtle.right(144)

	
>>> turtle.end_fill()
>>> turtle.done()

  

以上是关于五角星的主要内容,如果未能解决你的问题,请参考以下文章