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.

link|improve this question

1  
Where you unable to locate the Python documentation? – S.Lott Sep 13 '09 at 23:16
@Mk12: tags are about questions not about askers. Please, stop reverting – SilentGhost Sep 14 '09 at 18:16
@S.Lott Perhaps OP simply couldn't find the relevant section? If you don't have something constructive to add... – Cam Jackson Jan 23 at 2:15
I'm trying to figure out what the question means. These these are well-covered in the Python documentation. Since these things are well-documented, I'm trying to understand what the question means. – S.Lott Jan 23 at 3:46
feedback

5 Answers

up vote 19 down vote accepted

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

link|improve this answer
5  
Python's official documentation is excellent. – Fragsworth Sep 13 '09 at 21:14
feedback

Dive Into Python has an excellent appendix for them.

link|improve this answer
feedback

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

link|improve this answer
feedback

See Python Quick reference

link|improve this answer
feedback

Familiarize yourself with the dir function.

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

Your Answer

 
or
required, but never shown

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