Python 파이썬
파이썬 리스트에 있는 값들의 모든 조합구하기
스노(Snow)
2021. 7. 11. 00:16
하나의 리스트에 있는 값들의 모든 조합구하기
from itertools import combinations // itertools 라이브러리에 있는 combinations 불러오기
x = [1,2,3,4] // 리스트 제작
list(combinations(x,2)) // 리스트의 값들을 2개씩 묶은 모든 조합 구하기
여러 리스트에 있는 값들의 모든 조합 구하기
from itertools import product // itertools 라이브러리에 있는 combinations 불러오기
x = [(1,2,3),(4,5,6),('a','b','c')]
list(product(*x))