m = map(lambda x: x*2, range(100000000000000000000)) i = itertools.islice(m, 10**6, None) next(i)
I'm not sure how close you could get to "truly" lazy sequences combining count, zip and slice, though.
I'm not sure how close you could get to "truly" lazy sequences combining count, zip and slice, though.