> You may use python in interactive mode:
>
> $ python -i yourScript.py
>
> Or use a blocking readline:
>
> $ cat yourScript.py
> import sys
> sys.stdin.readline()
Thanks guys!
--
Regards
Konrad Viltersten
sleep- a substitute for coffee for the poor
ambiti
On Mar 2, 9:55 am, Sam <[EMAIL PROTECTED]> wrote:
> You may use python in interactive mode:
>
> $ python -i yourScript.py
>
> Or use a blocking readline:
>
> $ cat yourScript.py
> import sys
> sys.stdin.readline()
>
> ++
>
> Sam
FWIW, for what it's worth, you can invoke the interpreter from a batc
You may use python in interactive mode:
$ python -i yourScript.py
Or use a blocking readline:
$ cat yourScript.py
import sys
sys.stdin.readline()
++
Sam
--
http://mail.python.org/mailman/listinfo/python-list
I've proudly connected Notepad++ to edit
and run my fantastic software. When that
started to work, i noticed that all the
printing disappears as the console window
vanishes upon the program completion.
How can i trick Python program to keep on
running even if the actual statements
have been exect