xxxxxxxxxx
import time
# Pause the execution for 5 seconds
time.sleep(5)
xxxxxxxxxx
import time #gets the builtin time module
time.sleep(5) #lets the code sleep
xxxxxxxxxx
import time
# Wait for 5 seconds
time.sleep(5)
# Wait for 300 milliseconds
# .3 can also be used
time.sleep(.300)