Let's say we have two commands:
print("Hello")
print("How are you?")
If we execute this, we will get these two sentences printed.
I want the command 2 to be executed after 5 seconds the command 1 is executed. Is it possible to achieve this in Python?