Commit 79a839e5 by BellCodeEditor

save project

parent 4dfe0ace
Showing with 6 additions and 4 deletions
...@@ -5,12 +5,14 @@ ...@@ -5,12 +5,14 @@
import turtle import turtle
pen = turtle.Pen() pen = turtle.Pen()
pen.speed(100000000*10000)
# 请创造师在下面接着创作 # 请创造师在下面接着创作
q=1 # q=1
for i in range(1000): for i in range(0,500,1):
pen.fd(q) pen.fd(i)
pen.left(91) pen.left(91)
q=q+1 # q=q+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