sommeil python
import time
print("Print now")
time.sleep(4.2)
print("Printing after 4.2 seconds")
Batman
import time
print("Print now")
time.sleep(4.2)
print("Printing after 4.2 seconds")
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")
import time
print("hello")
time.sleep(3)
print("World")
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
time.sleep(<seconds>)