import turtle t = turtle.Turtle() a,b = 120,70 t.hideturtle() for _ in range(2): for r in [a,(a+b)/2,b]: t.circle(r, extent=180) t.penup() t.goto(0,2*a) t.setheading(180) t.pendown()