lab_iteration/square_sidebyside.py

18 lines
214 B
Python

from turtle import *
def square():
forward(100)
right(90)
forward(100)
right(90)
forward(100)
right(90)
forward(100)
right(90)
square()
forward(100)
square()
forward(100)
square()