from turtle import *
pensize(1)
pencolor('red')
fillcolor('pink')
speed(5)
up()
goto(-30, 100)
down()
begin_fill()
left(90)
circle(120, 180)
circle(360, 70)
left(38)
circle(360, 70)
circle(120, 180)
end_fill()
up()
goto(-100, -100)
down()
转载于:https://www.cnblogs.com/cjr0707/p/9695727.html