Golden Codes - armanexplorer planet

Practical code snippets for Django, Python, Bash, Git and All!

View on GitHub

example of reading the method body

import inspect

class MyClass:
    def my_method(self):
        print("This is the body of my_method.")

# Create an instance of MyClass
obj = MyClass()

# Access and print the body of my_method
method_body = inspect.getsource(obj.my_method)
print(method_body)