Ok so, I searched for this answer all over the internet but I am getting the answers which just run these functions one after the other
import time
def a():
time.sleep(5)
print("lmao")
def b():
time.sleep(5)
print("not so lmao huh")
I want "lmao" and "not so lmao" to be printed at the same time ( after 5 seconds)
The solutions which I saw all over the internet just printed "lmao" after 5 seconds of starting the program and "not so lmao huh" after 5 seconds of a()