# square_for_loop.py from turtle import * pensize(4) # The indented lines of code run 4 times: for i in range(4): forward(200) left(90) done()