from turtle import * def square(side_length): side=[1, 2, 3, 4] for sides in side: forward(side_length) right(90) square(50) input()