Answers for "python time sleep units"

29

python wait 1 sec

import time
 
# Wait for 5 seconds
time.sleep(5)
 
# Wait for 300 milliseconds
# .3 can also be used
time.sleep(.300)
Posted by: Guest on January-06-2020
33

py sleep function

import time

print("Print now")
time.sleep(4.2)
print("Printing after 4.2 seconds")
Posted by: Guest on July-27-2020

Python Answers by Framework

Browse Popular Code Answers by Language