Saltar al contenido

combinar listas en un ejemplo de código de Python

Ejemplo 1: cómo combinar dos listas en python

listone = [1,2,3]
listtwo = [4,5,6]

joinedlist = listone + listtwo

Ejemplo 2: Python cómo agregar una lista a otra lista

# Basic syntax:
first_list.append(second_list) # Append adds the the second_list as an
#	element to the first_list
first_list.extend(second_list) # Extend combines the elements of the 
#	first_list and the second_list

# Note, both append and extend modify the first_list in place

# Example usage for append:
first_list = [1, 2, 3, 4, 5]
second_list = [6, 7, 8, 9]
first_list.append(second_list)
print(first_list)
--> [1, 2, 3, 4, 5, [6, 7, 8, 9]]

# Example usage for extend:
first_list = [1, 2, 3, 4, 5]
second_list = [6, 7, 8, 9]
first_list.extend(second_list)
print(first_list)
--> [1, 2, 3, 4, 5, 6, 7, 8, 9]

Ejemplo 3: cómo combinar dos listas en python

l1 = ["a", "b" , "c"]
l2 = [1, 2, 3]
l1 + l2
>>> ['a', 'b', 'c', 1, 2, 3]

Ejemplo 4: fusionar dos listas python

>>> l1 = [1, 2, 3]
>>> l2 = [4, 5, 6]
>>> joined_list = [*l1, *l2]  # unpack both iterables in a list literal
>>> print(joined_list)
[1, 2, 3, 4, 5, 6]
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *