Commit 8411979b by BellCodeEditor

save project

parent 8774c9e9
Showing with 5 additions and 5 deletions
import turtle
pen = turtle.Pen()
screen = turtle.Screen()
screen.bgcolor("light pink")
distance=1
for i in range(1300):
pen.forward(distance)
screen.bgcolor("black")
colors=["green","orange","rad","blue"]
for i in range(1,300):
pen.color(colors[i%4])
pen.forward(i)
pen.right(91)
distance+=1
pen.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