I want my script to wait until my users presses the any key.
How do I do that?
I want my script to wait until my users presses the any key.
How do I do that?
One way to do this is to use raw_input()
:
raw_input("Press Enter to continue...")
In Python 3, no raw_input() exists. So, just use:
input("Press Enter to continue...")