raw_input without pressing enter
Under Windows, you need the msvcrt module, specifically, it seems from the way you describe your problem, the function msvcrt.getch: Read a keypress and return the resulting character. Nothing is echoed to the console. This call will block if a keypress is not already available, but will not wait for Enter to be pressed. (etc … Read more