import turtle as t
t.speed(0)
# 阳鱼
t.penup()
t.goto(0,-200)
t.pendown()
t.fillcolor('white')
t.begin_fill()
t.circle(200)
t.end_fill()
# 阴鱼
t.fillcolor('black')
t.begin_fill()
t.circle(200, 180)
t.setheading(0)
t.circle(-100, 180)
t.circle(100,180)
t.end_fill()
# 阳鱼眼
t.penup()
t.goto(0,-130)
t.pendown()
t.fillcolor('white')
t.begin_fill()
t.circle(30)
t.end_fill()
# 阴鱼眼
t.penup()
t.goto(0, 70)
t.pendown()
t.fillcolor('black')
t.begin_fill()
t.circle(30)
t.end_fill()
t.hideturtle()