diy1.py 155 Bytes Edit 1 2 3 4 5 6 7 8 9 10 import turtle a = turtle.Pen() a.left(45) a.forward(100) a.circle(50,180) a.right(90) a.circle(50,180) a.forward(100) a.hideturtle() turtle.done()