No busques más por todo internet porque llegaste al espacio adecuado, tenemos la solución que necesitas recibir pero sin complicarte.
Ejemplo 1: eliminar elemento de la lista python
# removes item with given name in listlist=[15,79,709,"Back to your IDE"]list.remove("Back to your IDE")# removes last item in listlist.pop()# pop() also works with an index...list.pop(0)# ...and returns also the "popped" item
item =list.pop()
Ejemplo 2: elemento pop de Python
my_list =[123,'Add','Grepper','Answer']
my_list.pop()-->[123,'Add','Grepper']#last element is removed
my_list =[123,'Add','Grepper','Answer']
my_list.pop(0)-->['Add','Grepper','Answer']#first element is removed
my_list =[123,'Add','Grepper','Answer']
any_index_of_the_list =2
my_list.pop(any_index_of_the_list)-->[123,'Add','Answer']#element at index 2 is removed #(first element is 0)
Ejemplo 3: Python pop
# Python list method pop() removes# and returns last object or obj from the list.# .pop() last element .pop(0) first element
my_list =[123,'Add','Grepper','Answer'];print"Pop default: ", my_list.pop()> Pop default: Answer
# List updated to [123, 'Add', 'Grepper']print"Pop index: ", my_list.pop(1)> Pop index: Add
# List updated to [123, 'Grepper']
Ejemplo 4: cómo sacar cosas de la lista Python
>>> l =['a','b','c','d']>>> l.pop(0)'a'>>> l
['b','c','d']
Ejemplo 5: función pop python
# programming languages list
languages =['Python','Java','C++','French','C']# remove and return the 4th item
return_value = languages.pop(3)print('Return Value:', return_value)# Updated Listprint('Updated List:', languages)
Ejemplo 6: lista emergente de Python
# removes last element of list unless parameter is given
l1 =[1,2,3,4,5]print(l1.pop())# returns [1, 2, 3, 4]print(l1.pop(2))# returns [1, 2, 4, 5] removes element at given index
Nos puedes respaldar nuestra labor escribiendo un comentario o valorándolo te damos las gracias.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)