I need to make a code with turtle that draws a second circle

Do I still add the code “for x in rang(#)”

before i draw something new

this is not working…

for x in range(number) just repeats what is below (moved to the right a bit a number of times equal to number and the value of x changed every time (increases of 1). With turtle you need to mimic the way you draw by hand indicating all movement and the for is just to repeat them.
So i guess you need to draw 18 circles … meaning the code below needs to be somehow a function of X

1 Like

and exactly how am i supposed to make it a function of x

I cannot tell you that as it is clearly the assignment.

1 Like