Python Interactive Shell

From GM-RKB
(Redirected from Python Shell)
Jump to navigation Jump to search

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



References

2014

  • http://ipython.org/ipython-doc/stable/overview.html
    • One of Python’s most useful features is its interactive interpreter. It allows for very fast testing of ideas without the overhead of creating test files as is typical in most programming languages. However, the interpreter supplied with the standard Python distribution is somewhat limited for extended interactive use. ....

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:...