Python für Loop Max Iterations

for i, item in zip(range(limit), items):
    print(i, item)
silvio2402