insérer un élément dans une liste python code example
Example 1: python extraer ultimo elemento lista
mi_lista = [10, 20, 30]
elemento = mi_lista.pop()
print(elemento) # 30
print(mi_lista) # [10, 20]
Example 2: indice d'un element dans une liste python
week = ['monday','tuesday','wednesday']
week.index('tuesday')
>>> 1
"""Warning => error if the element isn't in the list"""