Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why can you omit the surrounding parentheses for generators in Python when passing it into a function?

I was just experimenting in Python with different syntax for passing in a generator as an argument to a function, and I realized that although I've been doing this,

>>> sum((j for j in xrange(5)))
10

this works as well:

>>> sum(j for j in xrange(5))
10

This is tested on Python 2.6.6 on Linux. What's going on under the hood? Is it just syntactic sugar? After all, usually an unwrapped generator is indecipherable to the interpreter:

>>> j for j in xrange(5)
  File "<stdin>", line 1
    j for j in xrange(5)
        ^
SyntaxError: invalid syntax
like image 880
Darren Yin Avatar asked Jan 25 '11 22:01

Darren Yin


1 Answers

I'm sure reading the python grammar will answer that question.

If you prefer plain English over grammars: PEP-289 explains it.

like image 62
ThiefMaster Avatar answered Sep 24 '22 02:09

ThiefMaster