Commit ec269bf2 by BellCodeEditor

save project

parent 756e7c59
Showing with 5 additions and 2 deletions
......@@ -2,8 +2,11 @@ import turtle
pen=turtle.Pen()
colors=["blue","white","yellow","green"]
for i in range(1,300):
screen = turtle.Screen()
screen.bgcolor("black")
colors=["blue","yellow","white","green"]
pen.speed(1000)
for i in range(1,1000):
pen.pencolor(colors[i%4])
pen.forward(i)
pen.right(91)
......
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