Limite pour Loop Python
for index, item in enumerate(items):
print(item)
if index == limit:
break
Joeyeyey
for index, item in enumerate(items):
print(item)
if index == limit:
break