from turtle import*
width(10)
begin_fill()
left(160)
circle(100, 100)
circle(200, 60)
circle(40, 90)
circle(-40, 100)
circle(40, 100)
circle(200, 30)
left(90)
circle(-70, 150)
left(120)
circle(160, 55)
end_fill()
right(110)
up()
forward(25)
down()
begin_fill()
circle(-100, 90)
right(90)
circle(-100, 90)
end_fill()
hideturtle()
done()
Comments
Post a Comment