>>> from itertools import count >>> counter = count(start=13) >>> next(counter) 13 >>> next(counter) 14