xxxxxxxxxx
from time import sleep
# Example usage
print("Start")
sleep(3) # Delay program execution for 3 seconds
print("End")
xxxxxxxxxx
import time
print("Print now")
time.sleep(4.2)
print("Printing after 4.2 seconds")
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
#sleep() is in seconds
import time
print("Before the sleep statement")
time.sleep(5) #wait 5 seconds
print("After the sleep statement")
xxxxxxxxxx
import time
start = time.time()
print("sleeping...")
time.sleep(0.5)
print("woke up...")
elapsed_time = time.time() - start
print("elapsed time:", elapsed_time * 1000, "milliseconds")
xxxxxxxxxx
#!/usr/bin/python3
import time
print ("Start : %s" % time.ctime())
time.sleep( 5 )
print ("End : %s" % time.ctime())