A menudo, cuando tratamos con iteradores, también tenemos la necesidad de llevar un recuento de las iteraciones. Python facilita la tarea de los programadores al proporcionar una función integrada enumerate() para esta tarea. El método Enumerate() agrega un contador a un iterable y lo devuelve en forma de objeto de enumeración. Este objeto enumerado puede usarse directamente para bucles o convertirse en una lista de tuplas usando el método list().
Sintaxis:
enumerate(iterable, start=0)
Parámetros:
- Iterable: cualquier objeto que admita la iteración .
- Inicio: el valor del índice a partir del cual se iniciará el contador, por defecto es 0
Ejemplo
Python3
# Python program to illustrate # enumerate function l1 = ["eat", "sleep", "repeat"] s1 = "geek" # creating enumerate objects obj1 = enumerate(l1) obj2 = enumerate(s1) print ("Return type:", type(obj1)) print (list(enumerate(l1))) # changing start index to 2 from 0 print (list(enumerate(s1, 2)))
Return type: [(0, 'eat'), (1, 'sleep'), (2, 'repeat')] [(2, 'g'), (3, 'e'), (4, 'e'), (5, 'k')]
Usando el objeto Enumerate en bucles:
Python3
# Python program to illustrate # enumerate function in loops l1 = ["eat", "sleep", "repeat"] # printing the tuples in object directly for ele in enumerate(l1): print (ele) # changing index and printing separately for count, ele in enumerate(l1, 100): print (count, ele) # getting desired output from tuple for count, ele in enumerate(l1): print(count) print(ele)
(0, 'eat') (1, 'sleep') (2, 'repeat') 100 eat 101 sleep 102 repeat 0 eat 1 sleep 2 repeat
Este artículo es una contribución de Harshit Agrawal . Si te gusta GeeksforGeeks y te gustaría contribuir, también puedes escribir un artículo usando write.geeksforgeeks.org o enviar tu artículo por correo a review-team@geeksforgeeks.org. Vea su artículo que aparece en la página principal de GeeksforGeeks y ayude a otros Geeks.
Escriba comentarios si encuentra algo incorrecto o si tiene más información sobre el tema tratado anteriormente.
Publicación traducida automáticamente
Artículo escrito por GeeksforGeeks-1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA