vote up 3 vote down star
1

Could someone please give me a complete list of those special methods that you can put in classes, e.g. a couple are __len__ and __add__, but what are the rest? Thanks.

flag

1  
Where you unable to locate the Python documentation? – S.Lott Sep 13 at 23:16
@Mk12: tags are about questions not about askers. Please, stop reverting – SilentGhost Sep 14 at 18:16

5 Answers

vote up 11 vote down check

Please take a look at the special method names section in the Python language reference.

link|flag
3  
Python's official documentation is excellent. – Fragsworth Sep 13 at 21:14
vote up 3 vote down

Here is a complete reference of all the Python magic methods.

link|flag
vote up 5 vote down

Dive Into Python has an excellent appendix for them.

link|flag
vote up 2 vote down

See Python Quick reference

link|flag
vote up 0 vote down

Familiarize yourself with the dir function.

link|flag
but that would only do what I wanted if a the class passed to it implemented all of the special methods. – Mk12 Sep 13 at 22:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.