Commit 39d7783e by BellCodeEditor

save project

parent 5047c2b5
Showing with 2 additions and 2 deletions
...@@ -2,9 +2,9 @@ import turtle ...@@ -2,9 +2,9 @@ import turtle
pen=turtle.Pen() pen=turtle.Pen()
screen=turtle.Screen() screen=turtle.Screen()
screen.bgcolor("black") screen.bgcolor("black")
colors=["red","orange","blue","white"] c=["red","orange","blue","white"]
for i in range(1,300): for i in range(1,300):
pen.pencolor(colors[i%4]) pen.pencolor(c[i%4])
pen.forward(i) pen.forward(i)
pen.left(91) pen.left(91)
pen.hideturtle() 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