Commit 79542439 by BellCodeEditor

save project

parent 97dfaa48
Showing with 6 additions and 3 deletions
import turtle import turtle
screen=turtle.Screen()
screen.bgcolor("black")
colors=["red","yellow","green","blue"]
pen=turtle.Pen() pen=turtle.Pen()
pen.speed(10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000) pen.pencolor(colors[1%4])
distance=1 pen.speed(100)
for i in range(10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000): for i in range(1,10000):
pen.forward(i) pen.forward(i)
pen.right(91) pen.right(91)
pen.hideturtle() pen.hideturtle()
......
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