Ejemplo 1: índice de búsqueda de python por valor
>>> ["foo", "bar", "baz"].index("bar")
1
Ejemplo 2: Python encuentra el índice del primer elemento coincidente en una lista
# Basic syntax:
list.index(element, start, end)
# Where:
# - Element is the item you're looking for in the list
# - Start is optional, and is the list index you want to start at
# - End is option, and is the list index you want to stop searching at
# Note, Python is 0-indexed
# Example usage:
my_list = [1, 2, 3, 4, 5, 6, 7, 8, 42, 9, 10]
my_list.index(42)
--> 8
Ejemplo 3: obtener el índice del elemento en la lista de Python
list.index(element)
Ejemplo 4: como encontrar la posición en una lista de Python
lst = [4, 6, 5]
lst.index(6) # will return 1
Ejemplo 5: obtener el índice del elemento en la lista
list.index(element, start, end)
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)