vote up 4 vote down star
2

I'm wondering if there's a reason that there's no first(iterable) in the Python built-in functions, somewhat similar to any(iterable) and all(iterable) (it may be tucked in a stdlib module somewhere, but I don't see it in itertools). first would perform a short-circuit generator evaluation so that unnecessary (and a potentially infinite number of) operations can be avoided; i.e.

def identity(item):
    return item

def first(iterable, predicate=identity):
    for item in iterable:
        if predicate(item):
            return item
    raise ValueError('No satisfactory value found')

This way you can express things like:

denominators = (2, 3, 4, 5)
lcd = first(i for i in itertools.count(1)
    if all(i % denominators == 0 for denominator in denominators))

Clearly you can't do list(generator)[0] in that case, since the generator doesn't terminate.

Or if you have a bunch of regexes to match against (useful when they all have the same groupdict interface):

match = first(regex.match(big_text) for regex in regexes)

You save a lot of unnecessary processing by avoiding list(generator)[0] and short-circuiting on a positive match.

flag

Just a note: I realize that the predicate kwarg is redundant with the generator capabilities. I just wanted to be thorough in defining what "first" really meant. – cdleary Jul 3 at 0:12

3 Answers

vote up 7 vote down check

If you have an iterable, you can just call its next method. Something like:

In [3]: (5*x for x in xrange(2,4)).next()
Out[3]: 10
link|flag
D'oh, of course! In Py3k the builtin is next(iterator). – cdleary Jul 3 at 2:10
vote up 1 vote down

Haskell makes use of what you just described, as the function take (or as the partial function take 1, technically). Python Cookbook has generator-wrappers written that perform the same functionality as take, takeWhile, and drop in Haskell.

But as to why that's not a built-in, your guess is as good as mine.

link|flag
2  
Such functions ("builtins" in terms of type and speed!) are in the itertools module of the standard library -- just like (e.g.) regular expressions are in the re module, math functions in the math module, etc. Always hard to decide what's best presented in the main namespace -- Perl has REs as built-ins, Fortran has SIN and COS &c, Haskell keeps there names such as take... Python prefers to have all of these groups of names in standard library modules. – Alex Martelli Jul 3 at 1:20
vote up 1 vote down

There's some ambiguity in your question. Your definition of first and the regex example imply that there is a boolean test. But the denominators example explicitly has an if clause; so it's only a coincidence that each integer happens to be true.

It looks like the combination of next and itertools.ifilter will give you what you want.

match = next(itertools.ifilter(None, (regex.match(big_text) for regex in regexes)))
link|flag
True, if the answer were zero we'd have a problem. The next(iterator) was the answer I was missing. – cdleary Jul 3 at 2:12

Your Answer

Get an OpenID
or

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