Commit 8ecb520e by BellCodeEditor

save project

parent 7c7f2582
Showing with 7 additions and 5 deletions
import turtle
t=1
q=turtle.Pen()
for i in range(9999):
q.forward(t)
q.right(91)
t+=1
s=turtle.Screen()
s.bgcolor("black")
c=["blue","green"]
for i in range(1,9999):
q.pencolor(c[i%2])
q.forward(i)
q.right(70)
q.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