六角形的绘制

时间:2020-03-15 11:33:36   收藏:0   阅读:45
#Drawing of Hexagon
import turtle as t
t.pensize(2)
t.pencolor("red")
t.rt(30)
t.fd(200)
t.rt(120)
t.fd(300)
t.rt(120)
t.fd(300)
t.rt(120)
t.fd(100)
t.rt(120)
t.fd(200)
t.rt(-120)
t.fd(300)
t.rt(-120)
t.fd(300)
t.rt(-120)
t.fd(100)
t.done

技术图片

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!