A sintaxe da lista index()
método é:
list.index(element, start, end)
lista (índice) de parâmetros
lista index()
método pode levar um máximo de três argumentos:
- elemento – o elemento a ser procurado
- início (opcional) – iniciar a pesquisa a partir deste índice
- final (opcional) – busca o elemento até este índice
Retornar o Valor da Lista (índice)
index()
método retorna o índice do elemento na lista.,- Se o elemento não for encontrado, uma excepção
é levantada.
Nota: O método index()
apenas devolve a primeira ocorrência do elemento correspondente.,
Example 1: Find the index of the element
Output
The index of e: 1The index of i: 2
Example 2: Index of the Element not Present in the List
# vowels listvowels = # index of'p' is vowelsindex = vowels.index('p')print('The index of p:', index)
Output
ValueError: 'p' is not in list
Example 3: Working of index() With Start and End Parameters
Output
The index of e: 1The index of i: 6Traceback (most recent call last): File "*lt;string>", line 13, in ValueError: 'i' is not in list