1.
The code currently draws a square. Change it so that it draws a triangle. Do so by modifying the loop and the turn that the turtle makes without modifying other code.
Remember that to make a complete shape, the turns must sum to 360 degrees.
range(____________)
rectangle
already defined. Add code that uses a for loop to call the procedure with the correct values for its parameters. Make sure that the 90-width and 10-height rectangle is the first one you draw. You should only need one loop and it must count down from 90 to 10.rectangle
in your loop and pass it the width and height you are calculating.