Commit 6755cacf by BellCodeEditor

save project

parent a6cfbf55
Showing with 9 additions and 4 deletions
import turtle import turtle
pen=turtle.Pen() pen=turtle.Pen()
distance=1 screen = turtle.Screen()
screen.bgcolor("black")
colors=["blue","red","green","yellow"]
pen.speed(9999999999999999999999999999999999999999999999999)
for i in range(3000000): for i in range(3000000):
pen.forward(distance) pen.pencolor(colors[i%4])
pen.right(91) pen.forward(i)
distance+=1 pen.right(100)
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