Commit 8ecb520e by BellCodeEditor

save project

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