#Trisha Ruiz
#6/8/23
#flower

import turtle
import random

#init turtle configurations
turtle.colormode(255)
turtle.speed(0)

angle = 91

#drawing our flower
for x in range(100):
    
    #size of the circle is determined by our for loop
    turtle.circle(x)    
    turtle.left(angle)