[Python] 곱집합(Cartesian product) 구하기 - product
Roel Downey
iterable으로 곱집합을 구하는 방법을 알아본다. 예) 두 스트링 'ABCD', 'xy' 의 곱집합은 Ax Ay Bx By Cx Cy Dx Dy 이다. 다른 언어에서는..(또는 이 기능을 모르시는 분은) for 문을 이용해 두 iterable의 원소를 하나씩 곱해간다. iterable1 = 'ABCD' iterable2 = 'xy' iterable3 = '1234' for value1 in iterable1: for value2 in iterable2: for value3 in iterable3: print(value1, value2, value3) 파이썬에서는 itertools.product를 이용하면, for 문을 사용하지 않고도 곱집합을 구할 수 있다. import itertools iterab..