I'm not able to understand the following code segment:
>>> lot = ((1, 2), (3, 4), (5,))
>>> reduce(lambda t1, t2: t1 + t2, lot)
(1, 2, 3, 4, 5)
How does the reduce function produce a tuple of (1,2,3,4,5) ?
|
I'm not able to understand the following code segment:
How does the reduce function produce a tuple of (1,2,3,4,5) ? |
||||
|
It's easier if you break out the
|
|||
|
|
|
|||
|
|
|
let's trace the reduce
Notice that your reduction concatenates tuples. |
|||
|
|
|
is the same as
and so on. In your case the
and because the parenthesizing on adding sequences doesn't make any difference, this is
or with your actual values
If
But without it, you only run into trouble if |
|||
|
|
|
reduce takes a function and an iterator as arguments. The function must accept two arguments. What reduce does is that it iterates through the iterator. First it sends the first two values to the function. Then it sends the result of that together with the next value, and so on. So in your case, it takes the first and the second item in the tuple, (1,2) and (3,4) and sends them to the lambda function. That function adds them together. The result is sent to the lambda function again, together with the third item. Since there are no more items in the tuple, the result is returned. |
|||
|
|
+on tuples is concatenation (not arithmetical addition)! – Andrew Jaffe Nov 28 '12 at 11:00reduce()function provides in general? I don't believe it's very insightful trying to understand every particular usage of reduce – phant0m Nov 28 '12 at 11:36+in this particular example and I thought it was an arithmetic addition. – Sibi Nov 28 '12 at 11:45