Commit b151db3a by BellCodeEditor

save project

parent 4153b9a8
Showing with 2 additions and 4 deletions
...@@ -2,11 +2,9 @@ import turtle ...@@ -2,11 +2,9 @@ import turtle
pen=turtle.Pen() pen=turtle.Pen()
pen.speed(100) pen.speed(100)
distance=1 for i in range(1,500):
for i in range(500):
pen.right(89) pen.right(89)
pen.forward(distance) pen.forward(i)
distance+=1
pen.hideturtle() pen.hideturtle()
turtle.done() turtle.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