Draw two filled circles as shown below.
Code:
turtle.left(90)
turtle.color('red')
turtle.begin_fill()
turtle.circle(75)
turtle.end_fill()
turtle.left(180)
turtle.color('blue')
turtle.begin_fill()
turtle.circle(75)
turtle.end_fill()
Draw two filled circles as shown below.
Code:
turtle.left(90)
turtle.color('red')
turtle.begin_fill()
turtle.circle(75)
turtle.end_fill()
turtle.left(180)
turtle.color('blue')
turtle.begin_fill()
turtle.circle(75)
turtle.end_fill()