You can import the time module and then use
wait 10 seconds before going on
Code:
import time
print "Start a Pause"
time.sleep(10)
print "After 10 seconds"
wait 10 seconds before going on