Commit 2b5762b9 by BellCodeEditor

save project

parent 186040d3
Showing with 4 additions and 3 deletions
...@@ -6,10 +6,10 @@ import turtle ...@@ -6,10 +6,10 @@ import turtle
pen = turtle.Pen() pen = turtle.Pen()
pen.color("red") pen.color("red")
distance=1 i=1
for i in range(600): for i in range(600):
pen.forward(distance) pen.forward(i)
pen.right(91) pen.right(91)
distance=distance+2 distance=i+2
pen.hideturtle() pen.hideturtle()
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