-
입력된 2차원 배열을 모든 조합으로 반환. 조합에 순서를 구분하여 다른 순서는 다른 조합으로 인식.
import itertools list(itertools.product(*array2)))
'Python' 카테고리의 다른 글
Python - 함수 인수 (0) 2020.09.06 Python - 사칙연산 관련 '//' '**' (0) 2020.09.06 Python - bisect 함수 (0) 2020.09.06 Python - iterable 유형 (0) 2020.09.06 Python - deque (0) 2020.09.06 Python - combination 클래스 함수 (0) 2020.09.06 Python - permutations 클래스 함수 (0) 2020.09.06 Python - tuple() 클래스 함수 (0) 2020.09.06