Commit 64d92ff7 by BellCodeEditor

save project

parent c96e8607
Showing with 2 additions and 4 deletions
import turtle as t import turtle as t
distance=0
t.speed(100) t.speed(100)
for i in range(300): for i in range(1,300):
t.forward(distance) t.forward(i)
t.right(91) t.right(91)
distance+=1
t.hideturtle() t.hideturtle()
t.done() t.done()
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