Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialKeerthi Suria Kumar Arumugam
4,585 PointsAre methods objects too?
Are methods in Python objects too ?
1 Answer
Chris Adamson
132,143 PointsA method is an object in the sense that it has methods and properties, and you can query those properties and invoke methods on it:
>>> def a():
... pass
...
>>> dir(a)
['__call__', '__class__', '__closure__', '__code__', '__defaults__', '__delattr_
_', '__dict__', '__doc__', '__format__', '__get__', '__getattribute__', '__globa
ls__', '__hash__', '__init__', '__module__', '__name__', '__new__', '__reduce__'
, '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subcla
sshook__', 'func_closure', 'func_code', 'func_defaults', 'func_dict', 'func_doc'
, 'func_globals', 'func_name']
>>>
Keerthi Suria Kumar Arumugam
4,585 PointsKeerthi Suria Kumar Arumugam
4,585 PointsGreat. That helps. Thank you.