Commit ff411e55 by BellCodeEditor

save project

parent 3ce31792
Showing with 14 additions and 0 deletions
import turtle
p=turtle.Pen()
sb=1
screen = turtle.Screen()
screen.bgcolor("light pink")
colors=["yellow","red","orange","cyan"]
p.speed(1000000)
for i in range(900):
p.pencolor(colors[sb%4])
p.forward(sb)
p.left(91)
sb=sb+1
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