import turtle # Set up the screen screen = turtle.Screen() screen.bgcolor("white") # Create a turtle object spiral = turtle.Turtle() spiral.speed(0) # Fastest drawing speed spiral.pensize(1) # Define the initial variables angle = 90 distance = 20 # Draw the spiral while True: spiral.forward(distance) # Move the turtle forward by the current distance spiral.left(angle) # Turn the turtle left by the specified angle distance +=20 # Increase the distance to simulate infinite growth # Finish turtle.done()