画五角星
Posted cnn-ljc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了画五角星相关的知识,希望对你有一定的参考价值。
import turtle turtle.pensize(5) turtle.pencolor("yellow") turtle.fillcolor("red") turtle.begin_fill() for i in range(0,5): turtle.forward(100) turtle.right(144) turtle.forward(100) turtle.left(72) turtle.end_fill() turtle.hideturtle() #隐藏画笔 turtle.done() #结束绘制
以上是关于画五角星的主要内容,如果未能解决你的问题,请参考以下文章