Python Introspection: Difference between revisions
Jump to navigation
Jump to search
Line 6: | Line 6: | ||
=Overview= | =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. | 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. | ||
=Module Introspection= | |||
Also see: {{Internal|Python_Language_Modularization#Module_Introspection|Python Language Modularization}} | |||
=Class Instance Introspection= | =Class Instance Introspection= | ||
=Invoking a Static Method Dynamically= | =Invoking a Static Method Dynamically= |
Revision as of 18:24, 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.
Module Introspection
Also see: