IPython Concepts

From NovaOrdis Knowledge Base
Revision as of 21:34, 15 May 2024 by Ovidiu (talk | contribs) (→‎?)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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.