IPython Concepts: Difference between revisions
Jump to navigation
Jump to search
Line 3: | Line 3: | ||
=Overview= | =Overview= | ||
An interactive Python interpreter, that encourages an execute-explore workflow instead of the typical edit-compile-run workflow. IPython evolved into [[Jupyter Notebook]]. | An interactive Python interpreter, that encourages an execute-explore workflow instead of the typical edit-compile-run workflow. IPython evolved into [[Jupyter Notebook]]. IPython has tab completion, which searches the namespace for any variables (objects, functions, etc.) matching the typed characters. |
Revision as of 00:21, 15 May 2024
Internal
Overview
An interactive Python interpreter, that encourages an execute-explore workflow instead of the typical edit-compile-run workflow. IPython evolved into Jupyter Notebook. IPython has tab completion, which searches the namespace for any variables (objects, functions, etc.) matching the typed characters.