Which is preferred
def method(self):
or
def method( self ):
With spaces in the parenthesis
|
|
Which is preferred
or
With spaces in the parenthesis
|
|||
|
|
|
|
Check out PEP 8. It says to do the first one. |
||
|
|
|
|
The common reference for Python style is PEP8, see: http://www.python.org/dev/peps/pep-0008/ To answer your question specifically, this is under "Pet Peeves": Avoid extraneous whitespace in the following situations:
|
||
|
|
|
|
There's PEP 8 the Python Style Guide: http://www.python.org/dev/peps/pep-0008/ It suggests the former style, but note the introduction carefully. I find the latter to be visual nails-on-chalkboard, personally. |
||
|
|
|
|
No space around the inside of function signatures. Occasionally I put space inside the parens of a function call if the arguments are particularly hairy, but never on the definition. I don't think any language makes a habit of that, actually. |
||
|
|