목록의 목록을 결합 파이썬

코드 예제

10
0

파이썬 한 목록을 다른 목록에 추가하는 방법

# Basic syntax:
first_list.append(second_list) # Append adds the the second_list as an
#	element to the 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]
0
0

목록의 목록을 결합 파이썬

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

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

파이썬 연결 목록 목록

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

result = sum(x, [])
0
0

목록 파이썬에서 목록 병합

import itertools
a = [['a','b'], ['c']]
print(list(itertools.chain.from_iterable(a)))
0
0

파이썬 병합 목록 목록

flat_list = [item for sublist in t for item in sublist]

다른 언어로

이 페이지는 다른 언어로되어 있습니다

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................