import turtle t=turtle.Turtle() t.pensize(3) t.speed(99999999999) for n in range(10000): t.forward(n*3) t.right(100)