vote up 0 vote down star

Which is preferred

def method(self):

or

def method( self ):

With spaces in the parenthesis

flag

74% accept rate

5 Answers

vote up 15 vote down check

Check out PEP 8. It says to do the first one.

link|flag
vote up 9 vote down

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:

  • Immediately inside parentheses, brackets or braces.

    • Yes: spam(ham[1], {eggs: 2})

    • No: spam( ham[ 1 ], { eggs: 2 } )

link|flag
vote up 2 vote down

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.

link|flag
vote up 1 vote down

http://www.python.org/dev/peps/pep-0008/

link|flag
vote up 1 vote down

Python Style Guide

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.

link|flag

Your Answer

Get an OpenID
or

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