본문 바로가기
Engineering WIKI/Python

[Python] zip(*iterable)

by wonos 2020. 11. 11.
matrix = [[1,2,3],[4,5,6]]

print(list(map(list, zip(*matrix))))



'''
OUTPUT : 
[[1,4], [2,5], [3,6]]
'''

zip()을 연산자 * 와 함께 쓰면 리스트를 언집(uzip)  할 수 있다.