import turtle
#turtle八卦图绘制
turtle.pensize(5)
turtle.color('black')
turtle.circle(100,180)
turtle.begin_fill()
turtle.circle(100,180)
turtle.end_fill()
turtle.begin_fill()
turtle.color('black')
turtle.circle(50,180)
turtle.end_fill()
turtle.right(180)
turtle.color('black','white')
turtle.begin_fill()
turtle.circle(50,-180)
turtle.end_fill()
turtle.up()
turtle.goto(0,50)
turtle.down()
turtle.begin_fill()
turtle.color('white')
turtle.circle(5)
turtle.end_fill()
turtle.up()
turtle.goto(0,150)
turtle.down()
turtle.begin_fill()
turtle.color('black')
turtle.circle(5)
turtle.end_fill()