IPython Concepts: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * IPython")
 
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
=External=
* https://ipython.readthedocs.io/en/stable/
=Internal=
=Internal=
* [[IPython#Subjects|IPython]]
* [[IPython#Subjects|IPython]]
=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.
=Features=
==<tt>?</tt>==
* Introspection.
* Combined with wildcards, will show all names matching the wildcard expression.

Latest revision as of 21:34, 15 May 2024

External

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.

Features

?

  • Introspection.
  • Combined with wildcards, will show all names matching the wildcard expression.