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# Example code
2
3import time
4
5time.sleep(3)
6print("Three seconds is over!")
7
8
9
10# Tutorial
11
12import time # This is mandatory to make this work.
13
14time.sleep(x) # x being the time you want the system to wait, in seconds.
15# Code you want to execute goes here.