Commit 36046ec3 by BellCodeEditor

save project

parent 861f6981
Showing with 3 additions and 2 deletions
...@@ -2,9 +2,10 @@ import turtle ...@@ -2,9 +2,10 @@ import turtle
a=turtle.Pen() a=turtle.Pen()
c=turtle.Screen() c=turtle.Screen()
a.speed(10000000000000000000000000000000) a.speed(10000000000000000000000000000000)
c.clear(black) c.bgcolor("black")
a.pencolor(red) colors=["red","black","green","blue","pink"]
for i in range(1,3000000): for i in range(1,3000000):
a.pencolor(colors[i%4])
a.forward(i) a.forward(i)
a.right(91) a.right(91)
a.hideturtle() a.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