I implemented a (simple) python generator. Now, I want to make another one (from it), which will iterate through all values, but last one.
def gen(x): # Generate the interval [x, 10]
if x <= 10:
yield x
for v in gen(x + 1):
yield v
What would be the best way to accomplish that? Is it possible to alter the original generator using a decorator?
itertools.isliceis good enough for this – Alexey Kachayev Dec 17 '12 at 12:55islice()does not support negative indexes. You'd have to know up front how many items the other iterator will produce. – Martijn Pieters Dec 17 '12 at 12:56