Commit 46293a43 by BellCodeEditor

save project

parent 1ae5143b
Showing with 2 additions and 1 deletions
...@@ -5,9 +5,10 @@ ...@@ -5,9 +5,10 @@
import turtle import turtle
pen = turtle.Pen() pen = turtle.Pen()
pen.speed(100000000) pen.speed(100000000)
pen.color('green') colors=['red','green','yellow','pink']
i=1 i=1
for i in range(1000): for i in range(1000):
pen.color(colors[i%4])
pen.fd(i) pen.fd(i)
pen.right(91) pen.right(91)
i+=1 i+=1
......
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