Can I have a running python script(under Windows)being paused in the middle by user , and resume again when user decides ?
There is a main manager program which gen
I don't understand very well your approach but every time a user needs to press a enter to continue the script you should use:
input() #for python 3k raw_input() #for python 2k
without assigning the receiving answer to a variable.