So I have a function like this:
import time
def f(a):
if(a>1):
time.sleep(3600)
f()
#код выполняется дальше
The function I gave as an example of a function that is very long. How to call a function and not wait for the end of the process? I would like to hear the short answer, not a recommendation of the form "Read a three-volume, Lutz and all will understand"