Commit b24cf825 by BellCodeEditor

save project

parent 049146b3
Showing with 4 additions and 3 deletions
...@@ -5,10 +5,11 @@ ...@@ -5,10 +5,11 @@
import turtle import turtle
pen = turtle.Pen() pen = turtle.Pen()
nitama = 1
for i in range(300): for i in range(1,30000):
pen.speed()
pen.right(91) pen.right(91)
pen.forward(nitama) pen.forward(i)
nitama += 1 nitama += 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