turtle模块实现多边形
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了turtle模块实现多边形相关的知识,希望对你有一定的参考价值。
import turtle
def square(length,n):#边长和边数
bob = turtle.Turtle()
for i in range(n):
bob.fd(length)
bob.lt(360/n)#每次所转角度
turtle.mainloop()
square(70,6)
<a target="_blank" href="//shang.qq.com/wpa/qunwpa?idkey=14810f366fd210392f3943e7a1f03d90dabd650cb62dedfba80ceaa4476f2a40"><img border="0" src="//pub.idqqimg.com/wpa/images/group.png" alt="pythonER" title="pythonER"></a>
以上是关于turtle模块实现多边形的主要内容,如果未能解决你的问题,请参考以下文章