Python untuk iterasi loop max

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