第一次用turtle画画
import turtle as t
t
t.fillcolor(“black”)
t.begin_fill()
t.right(90)
t.fd(130)
t.left(90)
t.fd(150)
t.pu()
t.goto(0,0)
t.pd()
t.fd(50)
t.right(90)
t.circle(100,90)
t.circle(-15,180)
t.end_fill()
t.fillcolor(“white”)
t.begin_fill()
t.pu()
t.goto(35,-35)
t.pd()
t.circle(25)
t.end_fill()
t.fillcolor(“black”)
t.begin_fill()
t.pu()
t.goto(30,-65)
t.pd()
for i in range(5):
t.fd(17)
t.right(144)
t.fd(17)
t.left(72)
t.end_fill()
t.pu()
t.goto(0,-130)
t.pd()
t.right(270)
t.fd(5)
t.left(90)
t.fd(150)
t.left(90)
t.fd(5)
t.fillcolor(“white”)
t.begin_fill()
t.fd(30)
t.right(90)
t.circle(-15,180)
t.end_fill()
t.hideturtle()
t.done()