Tagged Questions
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 ...
4
votes
1answer
964 views
Make Emacs use UTF-8 with Python Interactive Mode
When I start Python from Mac OS' Terminal.app, python recognises the encoding as UTF-8:
$ python3.0
Python 3.0.1 (r301:69556, May 18 2009, 16:44:01)
[GCC 4.0.1 (Apple Inc. build 5465)] on darwin
...
2
votes
2answers
568 views
Exact semantics of Matplotlib's “interactive mode” (ion(), ioff())?
The documentation for the "interactive mode" in Matplotlib's pyplot reads:
The interactive property of the pyplot interface controls whether a figure canvas is drawn on every pyplot command. If ...
1
vote
1answer
184 views
Handling exceptions without try block in Python's interactive shell
See the title of this question. I want to play with the exception raised in the last command. _ didn't help me. Is there anything like that?
0
votes
1answer
56 views
Python - Interactive mode vs. normal invocation of the interpreter
Is there a difference between the two modes in terms of resources, especially memory? I'm referring to Python in the title but if there is a common explanation to many interpreted languages (Octave, ...