Posteriormente a indagar en varios repositorios y sitios de internet al final nos hemos encontrado la solución que te mostramos ahora.
Ejemplo: cómo actualizar la lista en python
simple_list =[1,2,3,4]# append an element
simple_list.append(5)# now simple_list is [1,2,3,4,5]# append all the elements of another list (NO NESTING)
second_list =[6,7,8]
simple_list.extend(second_list)# now simple_list is [1,2,3,4,5,6,7,8]# replace an element by simply giving the index and the new element
simple_list[0]=100# now simple_list is [100,2,3,4,5,6,7,8]
valoraciones y comentarios
Si te sientes motivado, puedes dejar un artículo acerca de qué te ha gustado de este escrito.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)