Tagged Questions

50
votes
7answers
10k views

The meaning of a single- and a double-underscore before an object name in Python

I want to clear this up once and for all. Can someone please explain the exact meaning of having leading underscores before an object's name in Python? Also explain the difference between a single and ...
6
votes
5answers
773 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.
4
votes
3answers
130 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 ...
4
votes
6answers
1k views

Why does python use two underscores for certain things?

I'm fairly new to actual programming languages, and Python is my first one. I know my way around Linux a bit, enough to get a summer job with it (I'm still in high school), and on the job, I have a ...
3
votes
6answers
196 views

What does underscoring methods connote?

I am relatively new to the Python language and encountered this in doing the following: help(list) Here is what I encountered: __add__(...) | x.__add__(y) <==> x+y | | ...
2
votes
2answers
3k views

Purpose of Python's __repr__

def __repr__(self): return '<%s %s (%s:%s) %s>' % ( self.__class__.__name__, self.urlconf_name, self.app_name, self.namespace, self.regex.pattern) What is the significance/purpose of ...