Answers for "how to add a delay to calling another python file in python"

4

python wait for x seconds

import time
x = 1 # Put in whatever seconds you want it to wait
time.sleep(x)
Posted by: Guest on July-19-2020
3

wait in python

#Wait in python
#Module required - time
import time
#Wait in for the time you put
time.sleep(0.5)
print('Wait in python')
Posted by: Guest on October-04-2020

Code answers related to "how to add a delay to calling another python file in python"

Python Answers by Framework

Browse Popular Code Answers by Language