The python-interactive tag has no wiki summary.
11
votes
10answers
1k views
Why use Python interactive mode?
When I first started reading about Python, all of the tutorials have you use Python's Interactive Mode. It is difficult to save, write long programs, or edit your existing lines (for me at least). It ...
-2
votes
2answers
558 views
Call the Python interactive interpreter from within a Python script
Is there any way to start up the Python interpreter from within a script , in a manner similar to just using python -i so that the objects/namespace, etc. from the current script are retained? The ...