vote up 1 vote down star

In Ruby, I'm used to using Enumerable#inject for going through a list or other structure and coming back with some conclusion about it. For example,

[1,3,5,7].inject(true) {|allOdd, n| allOdd && n % 2 == 1}

to determine if every element in the array is odd. What would be the appropriate way to accomplish the same thing in Python?

flag

3 Answers

vote up 9 vote down check

To determine if every element is odd, I'd use all()

def is_odd(x): 
    return x%2==1

result = all(is_odd(x) for x in [1,3,5,7])

In general, however, Ruby's inject is most like Python's reduce():

result = reduce(lambda x,y: x and y%2==1, [1,3,5,7], True)

all() is preferred in this case because it will be able to escape the loop once it finds a False-like value, whereas the reduce solution would have to process the entire list to return an answer.

link|flag
vote up 3 vote down

I think you probably want to use all, which is less general than inject. reduce is the Python equivalent of inject, though.

all(n % 2 == 1 for n in [1, 3, 5, 7])
link|flag
vote up 2 vote down

Sounds like reduce in Python or fold(r|l)'?' from Haskell.

reduce(lambda x, y: x and y % == 1, [1, 3, 5])
link|flag
I've always wondered why catamorphisms are known as "fold"s in every functional language but Ruby and Python invent their own names... – ephemient Jul 2 at 4:48
JavaScript (1.8) uses reduce and I think Clojure uses reduce as well, but I may be mistaken on the latter one... I don't know why this is though. – blahblah Jul 2 at 7:31
This is tradition from Common Lisp, which borrowed the name from APL. I think Ruby and Python have much more Lisp influence than from any functional language. – Nathan Sanders Jul 2 at 12:50
Ah, I'd forgotten about Lisp; I'm far too accustomed to working with the strictly-typed family of functional languages... – ephemient Jul 2 at 15:46

Your Answer

Get an OpenID
or

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