How would I do a \"hit any key\" (or grab a menu option) in Python?
try: os.system('pause') #windows, doesn't require enter except whatever_it_is: os.system('read -p "Press any key to continue"') #linux