Commit 7de12a0c by BellCodeEditor

save project

parent 3f9fd0bc
Showing with 3 additions and 3 deletions
import turtle import turtle
t = turtle.Turtle() t = turtle.Turtle()
distance = 1
t.speed(0) t.speed(0)
for i in range(300): for i in range(300):
t.forward(distance) t.forward(i)
t.left(91) t.left(91)
distance = distance + 1
turtle.done() turtle.done()
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment