Commit 40d6af32 by BellCodeEditor

save project

parent 1c2f393f
Showing with 2 additions and 2 deletions
...@@ -5,9 +5,9 @@ ...@@ -5,9 +5,9 @@
import turtle import turtle
pen=turtle.Pen() pen=turtle.Pen()
pen.speed(100) pen.speed(100)
colors=["red","blue","green","yellow"] colors=["red","blue","green","yellow","black","orange","purple"]
for i in range(1,800): for i in range(1,800):
pen.pencolor(colors[i%4]) pen.pencolor(colors[i%7])
pen.forward(i) pen.forward(i)
pen.right(91) 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