xxxxxxxxxx
from time import sleep, time
sleep(1) # it is gonna sleep 1 sec. you can change the time if you want
# --- there are two ways you can do it. you can choose whatever you want
import time
time.sleep(1) # it is gonna sleep 1 sec. you can change the time if you want
xxxxxxxxxx
from time import sleep
# Example usage
print("Start")
sleep(3) # Delay program execution for 3 seconds
print("End")
xxxxxxxxxx
#sleep() is in seconds
import time
print("Before the sleep statement")
time.sleep(5) #wait 5 seconds
print("After the sleep statement")
xxxxxxxxxx
import os
os.system("rundll32.exe powrprof.dll,SetSuspendState 0,1,0")
xxxxxxxxxx
#!/usr/bin/python3
import time
print ("Start : %s" % time.ctime())
time.sleep( 5 )
print ("End : %s" % time.ctime())