Python Introspection: Difference between revisions
Jump to navigation
Jump to search
Line 7: | Line 7: | ||
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. | 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= | =Class Instance Introspection= | ||
=Invoking a Static Method Dynamically= |
Revision as of 02:55, 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.