“Cómo agregar dos listas en Python” Código de respuesta

Agregue dos listas en Python

list1 = ["a", "b" , "c"]
list2 = [1, 2, 3]

list1.extend(list2)
print(list1)
Bst Barracuda

Cómo agregar dos listas en Python

list1 = ["M", "na", "i", "Ke"] 
list2 = ["y", "me", "s", "lly"]
list3 = [i + j for i, j in zip(list1, list2)]
print(list3)
# My name is Kelly
Ovy

Unir listas Python

first_list = ["1", "2"]
second_list = ["3", "4"]

# Multiple ways to do this:
first_list += second_list
first_list = first_list + second_list
first_list.extend(second_list)
Weary Wolverine

Cómo combinar dos listas en Python

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

joinedlist = listone + listtwo
Cook's Tree Boa

Cómo concatenar dos listas en Python

list1 = ["Hello ", "take "]
list2 = ["Dear", "Sir"]

resList = [x+y for x in list1 for y in list2]
print(resList)

#['Hello Dear', 'Hello Sir', 'take Dear', 'take Sir']
Ovy

fusionar dos listas Python

# list1 = [1, 2, 3] 
# list2 = [4, 5]
# new_list = [1, 2, 3, 4, 5]

new_list = list1.extend(list2)
Tense Tarantula

Respuestas similares a “Cómo agregar dos listas en Python”

Preguntas similares a “Cómo agregar dos listas en Python”

Más respuestas relacionadas con “Cómo agregar dos listas en Python” en TypeScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código