python 3 sleep built-in code example
Example: python sleep
import time
print("Print now")
time.sleep(4.2)
print("Printing after 4.2 seconds")
import time
print("Print now")
time.sleep(4.2)
print("Printing after 4.2 seconds")