python简笔画绘制 数据驱动绘图恐龙_使用python turtle绘制简笔画大白-Go语言中文社区...
使用python turtle繪制簡(jiǎn)筆畫大白
完整代碼:
import turtle as t
pen = t.Turtle() # 定義畫筆實(shí)例
pen.speed(0)
pen.pensize(5)
pen.pu()
pen.right(90)# 頭部
pen.goto(-100,200)
pen.pd()
a = 1
for i in range(120):
if 0 <= i < 30 or 60 <= i < 90:
a = a + 0.2
pen.lt(3) # 向左轉(zhuǎn)3度
pen.fd(a) # 向前走a的步長(zhǎng)
else:
a = a - 0.2
pen.lt(3)
pen.fd(a)
pen.pu()
pen.goto(-50,200)
pen.dot(20)
pen.goto(35,200)
pen.dot(20)
pen.right(90)
pen.pd()
# 身體
pen.pensize(5)
pen.fd(85)
pen.pu()
pen.goto(-70,150)
pen.pd()
pen.left(30)
pen.circle(200,90)
pen.pu()
pen.goto(50,150)
pen.left(30)
pen.pd()
pen.circle(-200,90)
pen.pu()
pen.goto(-140,-125)
pen.pd()
pen.left(90)
pen.circle(270,59)
#腿
pen.pu()
pen.goto(-120,-140)#左腿
pen.right(135)
pen.pd()
pen.circle(90,120)
pen.seth(-270)
pen.fd(90)
pen.pu()#右腿
pen.goto(100,-140)
pen.right(165)
pen.pd()
pen.circle(-90,120)
pen.seth(-270)
pen.fd(88)
#胳膊
pen.pu()#左臂
pen.goto(-130,100)
pen.pd()
pen.seth(200)
pen.circle(200,70)
pen.circle(30,180)
pen.fd(50)
pen.right(45)
pen.fd(50)
pen.up()#右臂
pen.goto(110,100)
pen.pd()
pen.seth(162)
pen.circle(200,-70)
pen.circle(30,-180)
pen.fd(-50)
pen.left(225)
pen.fd(50)
pen.hideturtle()
t.exitonclick()
繪制效果如下(不要嫌丑哈哈哈哈哈)
總結(jié)
以上是生活随笔為你收集整理的python简笔画绘制 数据驱动绘图恐龙_使用python turtle绘制简笔画大白-Go语言中文社区...的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: python常用编译器和解释器的区别_P
- 下一篇: python定义词典_python –