Commit 072a5060 by BellCodeEditor

save project

parent 98e94438
Showing with 9 additions and 5 deletions
......@@ -5,12 +5,16 @@
import turtle
pen = turtle.Pen()
pen.speed(99999)
screen=turtle.Screen()
screen.bgcolor("black")
pen = turtle.Pen()
colors=["red","green","blue","purple","pink","white","orange"]
pen.speed(99999999999999999)
# 请创造师在下面接着创作
distance=1
for i in range(222)
pen.forward(distance)
distance+=1
for i in range(1,9999999):
pen.forward(i)
pen.pencolor(colors[i%7])
i+=9999999999999999999
pen.right(91)
pen.hideturtle()
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