Search Results

4
votes
10answers
867 views

How do I merge two python iterators?

I have two iterators, a list and an itertools.count object (i.e. an infinite value generator). I would like to merge these two into a resulting iterator that will alternat …
5
votes
8answers
568 views

When is not a good time to use python generators?

This is rather the inverse of What can you use Python generator functions for?: python genera …