How would I do a \"hit any key\" (or grab a menu option) in Python?
I implemented it like the following in Windows. getch() takes a one single character
getch()
import msvcrt char = 0 print 'Press any key to continue' while not char: char = msvcrt.getch()