Commit 12be2b3e by BellCodeEditor

save project

parent faf8dd05
Showing with 12 additions and 0 deletions
import turtle
screen=turtle.Screen()
screen.bgcolor("black")
colors=["red","orange","yellow","green"]
turtle.speed(0)
for i in range(0,2000):
turtle.forward(i)
turtle.right(91)
turtle.pencolor(colors[i%4])
turtle.hideturtle()
turtle.done()
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