Untitled

Anonymous
plain_text
10/18/2023 5:03 PM
196 B
12
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...