python-by-example-150-chall.../challenges60-68/challenge-060.py
2019-07-18 16:31:50 +03:00

8 lines
118 B
Python

import turtle
draw = turtle.Turtle()
draw.shape('turtle')
for i in range(0, 4):
draw.forward(100)
draw.right(90)