Este enunciado ha sido aprobado por expertos así garantizamos la veracidad de nuestra esta crónica.
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 tothe 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: agregar dos listas en Python
list1 =["a","b","c"]
list2 =[1,2,3]
list1.extend(list2)print(list1)
Ejemplo 4: cómo combinar 2 listas en Python
l1 =[1,2,3,4]
l2 =[1,1,1,1]
l3 =[l1[x//2] if x % 2 == 0 else l2[x//2] for x in range(8)]// l3: [1, 2, 3, 4, 5, 6, 7, 8]
Ejemplo 5: unirse a listas de Python
first_list =["1","2"]
second_list =["3","4"]
# Multiple ways todothis:
first_list += second_list
first_list = first_list + second_list
first_list.extend(second_list)
Ejemplo 6: fusionar dos listas
# Makes list1 longer by appending the elements of list2 at the end.
list1.extend(list2)
valoraciones y reseñas
Si sostienes alguna perplejidad y forma de acrecentar nuestro reseña te mencionamos escribir una apostilla y con mucho gusto lo ojearemos.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)