Commit 072a5060 by BellCodeEditor

save project

parent 98e94438
Showing with 9 additions and 5 deletions
...@@ -5,12 +5,16 @@ ...@@ -5,12 +5,16 @@
import turtle import turtle
pen = turtle.Pen() 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(1,9999999):
for i in range(222) pen.forward(i)
pen.forward(distance) pen.pencolor(colors[i%7])
distance+=1 i+=9999999999999999999
pen.right(91) pen.right(91)
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