You can use sleep as below.
import time
print(" Hello ")
time.sleep(10)
print(" World! ")
When you execute this code first "Hello" will be print and after exactly 10 seconds "World!" will be printed. So by sleep method we can execute events at particular time interval.