Untitled

 avatar
unknown
plain_text
2 years ago
147 B
5
Indexable
import turtle
wn = turtle.Screen()
t = turtle.Turtle()
t.forward(100)
wn.exitonclick()
for _ in range (4):
    t.forward(100)
    t.left(90)
Editor is loading...