반응형
zip(*iterable)은 동일한 개수로 이루어진 자료형을 묶어주는 기능을 하는 함수이다.
*iterable은 반복가능(iterable)한 자료형 여러 개를 입력할 수 있다는 의미이다.
list(zip([1, 2, 3], [4, 5, 6]))
list(zip([1, 2, 3], [4, 5, 6], [7, 8, 9]))
list(zip("abc", "def"))
출처) https://wikidocs.net/32#zip
반응형
'Development > Python' 카테고리의 다른 글
Python. periodictable 모듈로 분자량 계산하기 (0) | 2020.05.05 |
---|---|
Python. [most likely due to a circular import] Error (0) | 2020.05.05 |
[Python] delete characters in string : strip, lstrip, rstrip (0) | 2020.04.24 |
Python. 리스트와 레퍼런스 (0) | 2020.04.19 |
Python. if __name__ == '__main__' : 의미 (0) | 2020.03.09 |