闲的照着图片写了一个海绵宝宝,还有个小黄人没写完。
Python去年自学了一点点,现在也只记得turtle库了
import turtle as t
t.tracer(False)
t.pu()
t.goto(-100,100)
t.pd()
t.fillcolor("yellow")
t.begin_fill()
t.seth(-30)
for i in range(4):
for i in range(4):
t.circle(20,60)
t.circle(-20,60)
t.right(90)
t.end_fill()
#
t.pu()
t.goto(-20,40)
t.pd()
t.fillcolor("white")
t.begin_fill()
t.seth(90)
t.circle(26)
t.circle(-26)
t.end_fill()
#
t.pu()
t.goto(-56,40)
t.pd()
t.circle(-10)
t.pu()
t.fillcolor("black")
t.begin_fill()
t.goto(-50,40)
t.pd()
t.circle(-4)
t.end_fill()
#
t.pu()
t.seth(0)
t.fd(68)
t.pd()
t.seth(90)
t.circle(10)
#
t.pu()
t.left(90)
t.fd(5)
t.right(90)
t.pd()
t.fillcolor("black")
t.begin_fill()
t.circle(4)
t.end_fill()
#
t.pu()
t.left(90)
t.fd(33)
t.left(90)
t.fd(35)
t.pd()
t.left(270)
t.circle(-10,310)
#
t.seth(0)
t.pu()
t.fd(73)
t.right(90)
t.fd(68)
t.pd()
#
t.fd(50)
t.right(90)
t.fd(159)
t.right(90