import turtle
turtle.fillcolor('black')
turtle.begin_fill()
turtle.circle(150,180)
turtle.circle(75,-180)
turtle.circle(-75,-180)
turtle.end_fill()
turtle.fillcolor('white')
turtle.goto(0,100)
turtle.begin_fill()
turtle.circle(25)
turtle.end_fill()
turtle.penup()
turtle.goto(0,300)
turtle.pendown()
turtle.circle(150,180)
turtle.fillcolor('black')
turtle.penup()
turtle.goto(0,200)
turtle.pendown()
turtle.begin_fill()
turtle.circle(25)
turtle.end_fill()
turtle.hideturtle()
turtle.done()