“Scal dwie listy Python” Kod odpowiedzi

Dodaj dwie listy w Pythonie

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

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

Połącz listę list Python

x = [["a","b"], ["c"]]

result = sum(x, [])
# This combines the lists within the list into a single list
Troubled Thrush

Jak dodać dwie listy w Pythonie

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

Dodaj dwie listę numeru do jednego Pythona

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

Dołącz listy 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

Scal dwie listy Python

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

new_list = list1.extend(list2)
Tense Tarantula

Odpowiedzi podobne do “Scal dwie listy Python”

Pytania podobne do “Scal dwie listy Python”

Więcej pokrewnych odpowiedzi na “Scal dwie listy Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu