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 underscores, and why (__init__, for instance)?
|
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 underscores, and why (__init__, for instance)?
| |||||||
feedback
|
|
From the Python PEP 8 -- Style Guide for Python Code (http://www.python.org/dev/peps/pep-0008/):
Note that names with double leading and trailing underscores are essentially reserved for Python itself: "Never invent such names; only use them as documented". | ||||
|
feedback
|
|
Names surrounded by double underscores are "special" to Python. They're listed in the Python Language Reference, section 3, "Data model". | |||
|
feedback
|
|
The other respondents are correct in describing the double leading and trailing underscores as a naming convention for "special" or "magic" methods. While you can call these methods directly ( | |||
|
feedback
|