Commit 14291e78 by BellCodeEditor

save project

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