Do anyone here have any useful code which uses reduce() function of python? Is there any code other than the usual + and * that we see in the examples?
Refer Fate of reduce() in Python 3000 by GvR
|
Do anyone here have any useful code which uses reduce() function of python? Is there any code other than the usual + and * that we see in the examples? Refer Fate of reduce() in Python 3000 by GvR
| ||||
feedback
|
|
The other uses I've found for it besides + and * were with and and or, but now we have
Here's some cute usages: Flatten a list Goal: turn
List of digits to a number Goal: turn Ugly, slow way:
Pretty
| |||||||||||||||
feedback
|
|
| |||||
feedback
|
|
| |||
|
feedback
|
|
@Blair Conrad: You could also implement your glob/reduce using sum, like so:
This is less verbose than either of your two examples, is perfectly Pythonic, and is still only one line of code. So to answer the original question, I personally try to avoid using reduce because it's never really necessary and I find it to be less clear than other approaches. However, some people get used to reduce and come to prefer it to list comprehensions (especially Haskell programmers). But if you're not already thinking about a problem in terms of reduce, you probably don't need to worry about using it. | |||
|
feedback
|
|
Find intersection of N given list:
returns:
| |||
|
feedback
|
|
The usage of This is exactly the reason that (some) functional programmers like Of course, if certain instantiations (such as Readability, as mentioned by others, is indeed an issue. You could argue, however, that only reason why people find | |||
|
feedback
|
|
After grepping my code, it seems the only thing I've used reduce for is calculating the factorial:
| |||
|
feedback
|
|
Not sure if this is what you are after but you can search source code on Google. Follow the link for a search on 'function:reduce() lang:python' on Google Code search At first glance the following projects use
etc. etc. but then these are hardly surprising since they are huge projects. The functionality of reduce can be done using function recursion which I guess Guido thought was more explicit. | |||||||||||
feedback
|
|
I have an old Python implementation of pipegrep that uses reduce and the glob module to build a list of files to process:
I found it handy at the time, but it's really not necessary, as something similar is just as good, and probably more readable
| |||||||||
feedback
|
|
I'm writing a compose function for a language, so I construct the composed function using reduce along with my apply operator. In a nutshell, compose takes a list of functions to compose into a single function. If I have a complex operation that is applied in stages, I want to put it all together like so:
This way, I can then apply it to an expression like so:
And I want it to be equivalent to:
Now, to build my internal objects, I want it to say:
(The Lambda class builds a user-defined function, and Apply builds a function application.) Now, reduce, unfortunately, folds the wrong way, so I wound up using, roughly:
To figure out what reduce produces, try these in the REPL:
| |||
|
feedback
|