Home > Article > Backend Development > How to Retrieve a List of Methods in a Python Class?
Retrieving a list of methods in a Python class allows for flexible object manipulation based on available methods.
To obtain a list of methods in a class, utilize the inspect module's getmembers function:
<code class="python">import inspect methods_list = inspect.getmembers(Class, predicate=inspect.ismethod)</code>
where Class represents the target class.
Note that getmembers returns different results depending on the Python version:
Python 2: Returns a list of tuples: [(method_name, unbound_method_object), ...]
Python 3: Returns a list of method objects: [unbound_method_object, ...]
The getmembers function can take the following parameters:
To list the methods of the OptionParser class from optparse:
<code class="python">from optparse import OptionParser import inspect print(inspect.getmembers(OptionParser, predicate=inspect.ismethod))</code>
Output:
[('__init__', <unbound method OptionParser.__init__>), ('add_option', <unbound method OptionParser.add_option>), ('add_option_group', <unbound method OptionParser.add_option_group>), ...]
The above is the detailed content of How to Retrieve a List of Methods in a Python Class?. For more information, please follow other related articles on the PHP Chinese website!