Commit 14291e78 by BellCodeEditor

save project

parent d531977e
Showing with 9 additions and 2 deletions
import turtle as p
p.speed(10000000000000000)
for i in range(1,300):
colors = ["red","orange","yellow","green"]
screen = p.Screen()
screen.bgcolor("black")
p.shape("turtle")
p.speed(1000)
for i in range(1,10000):
p.fd(i)
p.pencolor(colors[i%4])
p.right(91)
p.hide()
p.done()
\ No newline at end of file
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