Control Flow: The for Loops
for
Exercise: Dashed Shapes
Draw a turtle square with dashed lines.
You may need to replace the turtle.forward(100) with a for loop that draws the dashed line.
turtle.forward(100)
Draw a turtle n-gon with dashed lines.