Turtle Challenge Three
Open tu2 and File, Save As, tu3
Improve your code by using a for loop (like a repeat loop in Scratch) to draw another two regular shapes that are not squares.
Vocabulary definite loop A for loop is a definite loop because we know how many times it will repeat.
You will need some of these instructions
for i in range(4): #loops the indented code four times
t.fd(60) #Yellow highlights shows indents
t.rt(90)
If you are not sure what angle to turn on any regular shape divide 360 by the number of sides the shape has.
For example 360 divided by 3 = 120. So turn right of left 120 degrees when coding a triangle.
The code above would draw a square
Screenshot
For more clues to fix your code DEBUG