Commit 3046bb01 by BellCodeEditor

save project

parent 847fa266
Showing with 8 additions and 1 deletions
import turtle
a=turtle.Pen()
a.pencolor('blue')
c=turtle.Screen()
c.bgcolor('black')
a.speed(100)
colors=['red','orange','yellow','blue']
for b in range(300):
a.pencolor(colors[b%4])
a.right(91)
a.forward(b)
a.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