Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Suppose we have in Python 3.x (and I guess in Python 2.6 and in Python 2.7 too) the following functions:

>>> def dbl_a(p): return p*2
>>> def dbl_b(p): return(p*2)
>>> def dbl_c(p): return (p*2)

If we run them we get:

>>> dbl_a(42)
84
>>> dbl_b(42)
84
>>> dbl_c(42)
84

The three functions provide the same result (value and type) and they seem to be equivalent.

But which of them has the more correct return statement?

Is there any side-effect in any of those definitions?

The same questions apply to the following situation with multiple values returned:

>>> def dbl_triple_a(p): return p*2, p*3
>>> def dbl_triple_b(p): return(p*2, p*3)
>>> def dbl_triple_c(p): return (p*2, p*3)

>>> dbl_triple_a(42)
(84, 126)
>>> dbl_triple_b(42)
(84, 126)
>>> dbl_triple_c(42)
(84, 126)

In this case every function returns a tuple, but my questions still remain the same.

share|improve this question
use whitespaces! – Ant Feb 12 '11 at 14:42

4 Answers

up vote 1 down vote accepted

There are generally 4 uses for the parentheses () in Python.

  1. It acts the same way as most of the other mainstream languages - it's a construct to force an evaluation precedence, like in a math formula. Which also means it's only used when it is necessary, like when you need to make sure additions and subtractions happen first before multiplications and divisions.
  2. It is a construct to group immutable values together in the same spirit as a similar set notation in math. We call this a tuple in Python. Tuple is also a basic type. It is a construct to make an empty tuple and force operator precedence elevation.
  3. It is used to group imported names together in import statements so you don't have to use the multi-line delimiter \. This is mostly stylistic.
  4. In long statements like

    decision = (is_female and under_30 and single
                or
                is_male and above_35 and single)

the parenthesis is an alternative syntax to avoid hitting the 80 column limit and having to use \ for statement continuation.

In any other cases, such as inside the if, while, for predicates and the return statement I'd strongly recommend not using () unless necessary or aid readability (defined by the 4 points above). One way to get this point across is that in math, (1) and just 1 means exactly the same thing. The same holds true in Python.

People coming from the C-family of languages will take a little bit getting used to this because the () are required in control-flow predicates in those languages for historical reasons.

Last word for return statements, if you are only returning 1 value, omit the (). But if you are returning multiple values, it's OK to use () because now you are returning a grouping, and the () enforces that visually. This last point is however stylistic and subject to preference. Remember that the return keywords returns the result of a statement. So if you only use , in your multiple assignment statements and tuple constructions, omit the (), but if you use () for value unpacking and tuple constructions, use () when you are returning multiple values in return. Keep it consistent.

share|improve this answer
Nitpicker's corner: #2 above is wrong. The only tuple that is constructed with partheses is an empty tuple. – patrys Apr 2 at 14:09
Grammatically you are correct, but in practice it's so common in tuple construction, you might as well think of it as a part of tuple literal syntax if you already do this consistently (and you probably already do). The reason for that is in old-style string formatting such as "%s, %s" % "foo", "bar" and "%s, %s" % ("foo", "bar") actually mean different things. Might as well just use () for all tuples to be consistent. But it's a stylistic choice of course. – Y.H Wong Apr 4 at 11:12
In your example the parentheses force operator precedence. It's like saying that 1 + 2 * 3 means a different thing that (1 + 2) * 3, which of course does not mean that we should put all additions in parentheses ;) – patrys Apr 4 at 12:07
True. Except that "%s %s" % "foo", "bar" is usually a mistake, and may not be obvious unless you know the language rules really really well, whereas 1 + 2 * 3 is just math that any 9 year-old can do. Regardless, good point. I've edited the answer. Thanks for pointing this out. – Y.H Wong Apr 4 at 15:37

return value is the "correct" way - return is a language construct, not a function.

If you want to return a tuple, use return your, values, here

There's no need for any parenthesis (tuples are created by the , "operator", not the ())

share|improve this answer
But if , "operator" creates tuples why >>> "We are Dioscuri: %s and %s" % 'Castor', 'Pollux' doesn't work? While >>> "We are Dioscuri: %s and %s" % ('Castor', 'Pollux') works as expected. – Chaos Manor Feb 14 '11 at 18:12
1  
Operator precedence/binding strength – ThiefMaster Feb 14 '11 at 20:20

Generally the convention would be to not use brackets on a return statement, as it's not a function. In this case, the parser would simply be ignoring the brackets entirely.

Tuples are typically expressed with brackets to increase readability, however they are not required.

Ultimately, however, they are all functionality identical and it comes down to preference.

share|improve this answer
1  
+1 Although ... slightly pedantic ... would it be the parser that ignores the brackets or just that [in the non-function-call case] (expr) -> expr in whatever post-parsing operation? (I guess one could take "python executable" as "the parser".) – user166390 Feb 12 '11 at 16:16
I'm sure at which point in the compilation that the brackets are 'removed', but you're probably right. I'd assume they'd make it into the parse tree, but likely don't make the final syntax tree. – James Davies Feb 13 '11 at 3:10

In (almost) any case, when in doubt, use parenthesis!

Seeing as they all do exactly the same, I think it's a matter of personal preference. I would choose the last one.

But then again, I'm not familiar with python.

share|improve this answer
4  
return(...) is of the devil. The devil, I say! – delnan Feb 12 '11 at 15:25
1  
While parenthesis can make code more clear, this is one case where I really don't like them -- return is a special construct, not a method call! – user166390 Feb 12 '11 at 16:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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