Tagged Questions

6
votes
5answers
858 views

Python classes special methods

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.
5
votes
3answers
145 views

Python: Why do some functions have underscores “__” before and after the function name?

This seems to occur a lot, and was wondering if this was a requirement in the Python languages, or merely a matter of convention. Also, could someone name and explain which functions tend to have the ...