“Unir listas 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

Agregue dos listas de número a una python

listone = [1,2,3]
listtwo = [4,5,6]
mergedlist = []
mergedlist.extend(listone)
mergedlist.extend(listtwo)
White Faced Tree Rat

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

Combinar a las listas de Python

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

joinedlist = listone + listtwo
Cook's Tree Boa

Respuestas similares a “Unir listas Python”

Preguntas similares a “Unir listas Python”

Más respuestas relacionadas con “Unir listas Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código