Commit b871839f by BellCodeEditor

save project

parent 8b777543
Showing with 19 additions and 0 deletions
import turtle
p=turtle.Pen()
screen=turtle.Screen()
screen.bgcolor("black")
colors=["yellow""red""green""orange"]
for i in range(1,300):
\ No newline at end of file
import turtle
p=turtle.Pen()
screen=turtle.Screen()
screen.bgcolor("black")
colors=["black","white","pink","orange"]
for i in range(1,300):
p.pencolor(colors[i%4])
p.forward(i)
p.right(91)
p.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