2 """ turtle-example-suite:
6 Another drawing suitable as a beginner's
9 The small circles are drawn by the circle
16 def yin(radius
, color1
, color2
):
20 circle(radius
/2., 180)
23 circle(-radius
/2., 180)
36 backward(radius
*0.375)
42 yin(200, "white", "black")
43 yin(200, "black", "white")
47 if __name__
== '__main__':