Python Interactive Shell

From GM-RKB
Revision as of 18:27, 1 August 2014 by Gmelli (talk | contribs) (Created page with "A Python Interactive Shell is a dynamic programming language shell that interacts with a Python interpreter. * <B>Example(s):</B> ** IPython. * <B>See:</B> [[P...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

A Python Interactive Shell is a dynamic programming language shell that interacts with a Python interpreter.



References

2012

  • https://docs.python.org/2/tutorial/interpreter.html#interactive-mode
    • When commands are read from a tty, the interpreter is said to be in interactive mode. In this mode it prompts for the next command with the primary prompt, usually three greater-than signs (>>>); for continuation lines it prompts with the secondary prompt, by default three dots (...). The interpreter prints a welcome message stating its version number and a copyright notice before printing the first prompt:...