Python Introspection

From NovaOrdis Knowledge Base
Revision as of 02:42, 8 July 2022 by Ovidiu (talk | contribs) (Created page with "=Internal= =TODO= https://www.geeksforgeeks.org/code-introspection-in-python/ =Overview= Introspection is Python's equivalent for Java reflection. It is the ability to determi...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Internal

TODO

https://www.geeksforgeeks.org/code-introspection-in-python/

Overview

Introspection is Python's equivalent for Java reflection. It is the ability to determine the type of an object at runtime and to dynamically examine Python objects.

Class Instance Introspection