Python Introspection: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(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...")
 
Line 1: Line 1:
=Internal=
=Internal=
* [[Python_Language_OOP#Class_Introspection|Python Object-Oriented Programming]]
=TODO=
=TODO=
https://www.geeksforgeeks.org/code-introspection-in-python/
https://www.geeksforgeeks.org/code-introspection-in-python/

Revision as of 02:44, 8 July 2022

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