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')