Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python에서 행렬의 수직 연결

<시간/>

행렬을 세로로 연결해야 하는 경우 목록 이해를 사용할 수 있습니다.

아래는 동일한 데모입니다 -

예시

from itertools import zip_longest

my_list = [["Hi", "Rob"], ["how", "are"], ["you"]]

print("The list is : ")
print(my_list)

my_result = ["".join(elem) for elem in zip_longest(*my_list, fillvalue ="")]

print("The list after concatenating the column is : ")
print(my_result)

출력

The list is :
[['Hi', 'Rob'], ['how', 'are'], ['you']]
The list after concatenating the column is :
['Hihowyou', 'Robare']

설명

  • 필요한 패키지를 가져옵니다.

  • 목록의 목록이 정의되어 콘솔에 표시됩니다.

  • 목록 이해는 요소를 압축하고 빈 공간을 제거하여 결합하는 데 사용됩니다.

  • 이것은 변수에 할당됩니다.

  • 이 변수는 콘솔에 출력으로 표시됩니다.