“Python łączy dwie listy” Kod odpowiedzi

Dodaj dwie listy w Pythonie

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

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

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

Python łączy dwie listy

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

joinedlist = listone + listtwo
Cook's Tree Boa

Scal List Elements Python

StringName = "seperator".join(ListName)

# Seperator denotes character between each of the joined list elements
Protelr

Jak połączyć dwie listy w 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

Odpowiedzi podobne do “Python łączy dwie listy”

Pytania podobne do “Python łączy dwie listy”

Więcej pokrewnych odpowiedzi na “Python łączy dwie listy” w Python

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

Przeglądaj inne języki kodu