Alright, I want to know how to delay a portion of a program without pausing the entire program. I\'m not necessarily good at python so if you could give me a relatively simple a
There is turtle.ontimer() that calls a function with the specified delay:
turtle.ontimer(your_function, delay_in_milliseconds)