Hi, I am having trouble with the code for my assignment that is due at 11:00pm CST
I attached the instructions in the files
heres the code i have so far that i have. I need to add range parameters in some capacity:
#Tajah Kenner
#November 7th 2021
#i created 4 pentagons using loop with yellow bg
import turtle
import random
wn = turtle.Screen()
wn.bgcolor(“yellow”)
mia = turtle.Turtle()
mia.pensize(3)
for i in [0,1,2,3]: #creates 4 pentagons
mia.forward(100)
mia.left(90)
mia.forward(70)
mia.left(45)
mia.forward(70)
mia.left(90)
mia.forward(70)
mia.left(45)
mia.forward(70)