wait in python thread code example
Example 1: 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')
Example 2: how to pause a thread in python
import time
while(True):
print("Prints every 10 seconds")
time.sleep(10)