Te damos la bienvenida a nuestra página web, en este lugar hallarás la respuesta de lo que buscas.
Ejemplo 1: agregar a listas python
list =['larry','curly','moe']
list.append('shemp') ## append elem at end
list.insert(0,'xxx') ## insert elem at index 0
list.extend(['yyy','zzz']) ## add list of elems at end
print list ## ['xxx','larry','curly','moe','shemp','yyy','zzz']
print list.index('curly') ## 2
list.remove('curly') ## search and remove that element
list.pop(1) ## removes and returns 'larry'
print list ## ['xxx','moe','shemp','yyy','zzz']
Ejemplo 2: agregar python
List =["One","value"]
List.append("to add") # "to add" can also be an int, a foat or whatever"
#List is now ["One","value","to add"]
#Or
List2 =["One","value"]
# "to add" can be anytypebutITMUST be in a list
List2 +=["to add"] # can be seen as List2 = List2 +["to add"]
#List2 is now ["One","value","to add"]
valoraciones y comentarios
Si eres capaz, tienes la opción de dejar un escrito acerca de qué le añadirías a este ensayo.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)