how to pause script in python code example
Example 1: pause program python
# To delay excusion use the time library
import time
time.sleep(secs)
Example 2: python wait for x seconds
import time
x = 1 # Put in whatever seconds you want it to wait
time.sleep(x)