Hey I need to know how to sleep in Python without interfering with the current script. I've tried using time.sleep() but it makes the entire script sleep.
Like for example
import time
def func1():
func2()
print("Do stuff here")
def func2():
time.sleep(10)
print("Do more stuff here")
func1()
I want it to immediately print Do stuff here, then wait 10 seconds and print Do more stuff here.