Commit 089ff469 by BellCodeEditor

save project

parent 10457c1b
Showing with 8 additions and 5 deletions
......@@ -4,9 +4,11 @@
"""
import turtle
pen = turtle.Pen()
distance=1
pen.speed(10000000000)
for i in range(1000):
pen.forward(distance)
distance+=1
screen=turtle.Screen()
screen.bgcolor('black')
colors=['green','red','orange','yellow']
pen.speed(9999999999999)
for i in range(1,300):
pen.pencolor(colors[i%4])
pen.forward(i)
pen.right(91)
\ 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