Commit acf28300 by BellCodeEditor

auto save

parent 508797d8
Showing with 2 additions and 2 deletions
...@@ -9,7 +9,7 @@ pen = turtle.Pen() ...@@ -9,7 +9,7 @@ pen = turtle.Pen()
pen.pencolor("red") pen.pencolor("red")
pen.speed(99999999) pen.speed(99999999)
distance=1 distance=1
for i in range(500): for i in range(1000):
pen.forward(distance) pen.forward(distance)
distance+=1 distance+=1
pen.right(91) pen.right(91)
...@@ -21,7 +21,7 @@ j = turtle.Pen() ...@@ -21,7 +21,7 @@ j = turtle.Pen()
j.pencolor("blue") j.pencolor("blue")
j.speed(99999999999999999999999999999999999999999999999999999) j.speed(99999999999999999999999999999999999999999999999999999)
distance=1 distance=1
for i in range(500): for i in range(1000):
j.forward(distance) j.forward(distance)
distance+=1 distance+=1
j.right(269) j.right(269)
......
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