La sintassi della lista index()
metodo è:
list.index(element, start, end)
elenco index() parametri
elenco index()
metodo può richiedere un massimo di tre argomenti:
- elemento – l’elemento da cercare
- start (opzionale) – iniziare la ricerca da questo indice
- fine (opzionale) – ricerca l’elemento all’indice
restituisce il Valore dall’Elenco index()
index()
metodo restituisce l’indice dell’elemento in elenco.,- Se l’elemento non viene trovato, viene generata un’eccezione
ValueError
.
Nota: il metodoindex()
restituisce solo la prima occorrenza dell’elemento corrispondente.,
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