1import time
2
3# Wait for 5 seconds
4time.sleep(5)
5
6# Wait for 300 milliseconds
7# .3 can also be used
8time.sleep(.300)
9
1# You need to import time first
2import time
3#now you have time you can make time wait/sleep
4time.sleep(10)
5#time will wait/sleep for 10 seconds
1#Wait in python
2#Module required - time
3import time
4#Wait in for the time you put
5time.sleep(0.5)
6print('Wait in python')