Commit 818ecc72 by BellCodeEditor

save project

parent c816b9b8
Showing with 17 additions and 0 deletions
import turtle
pen=turtle.Pen()
pen.speed(100)
s=turtle.Screen()
s.bgcolor("black")
colors=["green","red","orange","yellow"]
sb=5
for i in range(0,1000,1):
pen.pencolor(colors[i%4])
pen.forward(i)
pen.left(92)
i+=0.5
pen.hideturtle()
pen.goto(0)
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