bblais wrote:
> In Python, there seems to be a couple ways of doing things.   I could
> write it in one window, and from a Unix shell call
>                            python myscript.py
> and be like C++, but then I lose the interactiveness which makes
> prototyping easier.  If I use the python shell, I can use import (and
> reload), or execfile perhaps.

or "python -i myscript.py" which runs the script then leaves you in the
interpreter.

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to