Aprite il vostro editor di Python .
2
Tipo
list_example = [ "punteggi ", " 72 " , "99" , "100 " , " 89 " , " 85 " , " 79 " ]
list_example.index ( " 100 " )
3 Premere il tasto" Enter ".
Python prende in esame l'elenco dei punteggi dei test e restituisce il valore di indice "3" . Python restituisce " 3" perché "100" è il terzo elemento della lista
Continuando l'esempio , se hai inserito : .
List.example.index ( "88" ) per
Python restituirebbe un errore di valore da "88" non è un elemento nell'elenco
" ValueError : indice di una lista ( x ) : x non in lista" .
Programmazione © www.354353.com