Commit 845d5679 by BellCodeEditor

save project

parent 71920be1
Showing with 9 additions and 5 deletions
......@@ -5,11 +5,15 @@
import turtle
pen = turtle.Pen()
# 请创造师在下面接着创作
distance=1
while True:
pen.forward(distance)
distance+=1
screen=turtle.Screen()
screen.bgcolor("black")
colore=["red","blue","green","yellow","orange"]
i=0
# 请创造师在下面接着创
While True():
pen.pencolor(colore[i%5])
pen.forward(i)
i+=1
pen.right(70)
# 隐藏画笔,保存画布
pen.hideturtle()
......
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