Commit 05cc0466 by BellCodeEditor

save project

parent 33bae4ae
Showing with 2 additions and 2 deletions
......@@ -7,8 +7,8 @@ a = turtle.Pen()
d=turtle.Screen()
c=["red","blue","green","yellow"]
d.bgcolor("black")
for b in range(1,500):
a.pencolor(c[b%4])
for i in range(1,500):
a.pencolor(c[i%4])
a.forward(i)
a.right(100)
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