In this project, you practice loop and defining custom functions. Draw the following shape with a for loop. Define a function draw_circle(x,y,r), which draws a circle centered at (x,y) and
Trefoil, comes from Lantin, means three-leaved plant. It is a shape used in architecture and Christian symbolism. For more details about this shape checkout this Wikipedia article. Hint: This shape
import turtle
turtle.speed(0)
turtle.up()
turtle.circle(100,270)
turtle.down()
turtle.circle(100,180)
turtle.left(90)
turtle.fd(200)
turtle.left(18)
turtle.circle(25,180)
Good!