Commit 58b7efdc by BellCodeEditor

save project

parent afa84618
Showing with 10 additions and 5 deletions
...@@ -8,17 +8,22 @@ import turtle ...@@ -8,17 +8,22 @@ import turtle
pen = turtle.Pen() pen = turtle.Pen()
pen.speed(100000000000) pen.speed(100000000000)
# 请创造师在下面接着创作 # 请创造师在下面接着创作
t=turtle.Screen()
co=['red','orange','yellow','green','blue','cyan','pink','purple']
t.bgcolor("black")
for y in range(1):
for y in range(9): for i in range(1,401):
pen.pencolor(co[i%8])
for i in range(200): pen.forward(i)
pen.forward(i*3+2)
pen.right(y*2+92) pen.right(91)
t.bgcolor(co[i%8])
pen.penup() pen.penup()
pen.goto(0,0) pen.goto(0,0)
pen.pendown() pen.pendown()
distance=2 distance=2
......
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