Commit 31a2e025 by BellCodeEditor

save project

parent fc59db43
Showing with 7 additions and 2 deletions
import turtle
pen=turtle.Pen()
for i in range(1,300):
screen=turtle.Screen()
screen.bgcolor("black")
colors=["red","yellow","blue","green"]
for i in range(1,500):
pen.color(colors[i%4])
pen.fd(i)
pen.rt(1000)
pen.lt(550)
pen.speed(i)
turtle.hideturtle()
turtle.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