Answers for "sleep 1 second python"

19

wait function python

import time
#Waits 1 second
time.sleep(1)
Posted by: Guest on March-07-2020
19

python delay

>>> import time
>>> time.sleep(3) # Sleep for 3 seconds
Posted by: Guest on May-11-2020
33

sleep in py

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