Python dla pętli Max iteracje

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