time library python how to delay function code example
Example 1: how to wait in python
import time
#Waits 1 second
time.sleep(1)
Example 2: python delay
>>> import time
>>> time.sleep(3) # Sleep for 3 seconds
import time
#Waits 1 second
time.sleep(1)
>>> import time
>>> time.sleep(3) # Sleep for 3 seconds