Indexes range from 0 to the amount of elements added.
example:
listaN1 = [1,2,3]
""" três pontos (...) é uma Ellipsi , omissão de valor. """
#ou
listaN2 = 'abc' #String em python tbm pode ser lista.
índice = valor índice = valor
0 = 1 0 = a
1 = 2 1 = b
2 = 3 2 = c
Accessing using negative index returned the list backwards.
índice = valor índice = valor
-1 = 3 -1 = c
-2 = 2 -2 = b
-3 = 1 -3 = a
#Zero at zero was nowhere, negative zero is the index of the first element.
Example Manipulating the list:
listaN1[**iniciar** : *parar* : **pular**]
listaN1[0:2)]
retorno = dois primeiros elementos,
listaN1[0:3)]
retorno = três elementos
# OU
listaN1[:2] #OMITIR O PRIMEIRO VALOR, CONSIDERA ZERO
listaN1[2:3] # ultimo elemento.
#pulando posições, como não digitei muitos numero vera nenhuma diferença.
listaN1[1::3]
#INVERTENDO VALORES, MENOR PARA O MAIOR.
listaN1[::-1]
lista.index('a') - len(lista)
?– bfavaretto
Thanks!! It worked :D
– RafaCRz
... or use the reverse list
-lista[::-1].index('a')-1
(ignore: I’m playing charades!)– JJoao