You can use
from time import sleep
sleep(1.5) # sleep 1.5 seconds
The precision of the sleep depends on your system (see timemodule.c for implementation details).
Also you may want to try
import os
os.system("pause")
Finally, if you want to wait until ENTER is pressed, simply use raw_input
raw_input("Press enter to continue")
This snippet could help you too http://snippets.dzone.com/posts/show/915
Gribouillis
Posting Maven
2,786 posts since Jul 2008
Reputation Points: 1,044
Solved Threads: 691
Normally raw_input (Python 2) or input (Python 3) is enough. If you want to get fancy and have anyway in your module library my Tkinter getkey , you can utilize it also (for me input has been enough) You may want to make simple base class for it though as the snippet is reaction to key press for game use.
Notice also that many editors can pause the screen at end like ConText editor for Windows.
pyTony
pyMod
5,359 posts since Apr 2010
Reputation Points: 782
Solved Threads: 852