vote up 3 vote down star
1

Suppose we have an iterator (an infinite one) that returns lists (or finite iterators), for example one returned by

infinite = itertools.cycle([[1,2,3]])

What is a good Python idiom to get an iterator (obviously infinite) that will return each of the elements from the first iterator, then each from the second one, etc. In the example above it would return 1,2,3,1,2,3,.... The iterator is infinite, so itertools.chain(*infinite) will not work.

Related

flag

2 Answers

vote up 11 vote down check
def flatten(iterables):
    return (elem for iterable in iterables for elem in iterable)

Edit: Starting with Python 2.6, you can also say

itertools.chain.from_iterable(iterables)
link|flag
Before Python 2.6 you can also say: itertools.chain(*iterables) – J.F. Sebastian Mar 14 at 10:41
@JF: Unfortunately, no - the iterator is infinite, so Python will exhaust memory trying to expand the *iterables expression. – Rafał Dowgird Mar 22 at 12:18
vote up 3 vote down

Use a generator:

(item for it in infinite for item in it)

The * construct unpacks into a tuple in order to pass the arguments, so there's no way to use it.

link|flag

Your Answer

Get an OpenID
or

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