小狮子的源代码,有不明白的可以找我

小狮子的源代码,有不明白的可以找我


"multi_version":false

importturtle ast
defhair():#画头发
t.penup()
t.goto(-50 150)
t.pendown()
t.fillcolor('#a2774d')
t.begin_fill()
forj inrange(10):#重复执行10次
t.setheading(60-(j *36)) #每次调整初始角度
t.circle(-50 120) #画120度的弧
t.end_fill()
defface():#画脸
t.penup()
t.goto(0 100)
t.pendown()
t.fillcolor('#f2ae20')
t.begin_fill()
t.setheading(180)
t.circle(85)
t.end_fill()
#下巴
t.circle(85 120)
t.fillcolor('white')
t.begin_fill()
t.circle(85 120)
t.setheading(135)
t.circle(100 95)
t.end_fill()
defears(dir):#画眼睛 , dir用来设置方向 , 左右眼对称
t.penup()
t.goto((0-dir) *30 90)
t.setheading(90)

推荐阅读