Commit 37f8469c by BellCodeEditor

save project

parent 6ca43f5a
Showing with 2 additions and 2 deletions
...@@ -4,10 +4,10 @@ pen.speed(200) ...@@ -4,10 +4,10 @@ pen.speed(200)
pen.pensize(2) pen.pensize(2)
a = turtle.Screen() a = turtle.Screen()
a.bgcolor('black') a.bgcolor('black')
colors = ['yellow','red','orange','green','white','bule'] colors = ['yellow','red','orange','green']
for i in range(1,1000): for i in range(1,1000):
pen.pencolor(colors[i%6]) pen.pencolor(colors[i%4])
pen.forward(i) pen.forward(i)
pen.right(70) pen.right(70)
......
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