코딩하는 문과생
[Python] 순열과 조합 본문
from itertools import permutations
per = permutations(['빨','주','노','초'],2)
from itertools import combinations
com = combinations('1234',2)
'프로그래밍 > Python' 카테고리의 다른 글
[Python] split함수 (0) | 2019.11.20 |
---|---|
[Python] isdigit(), isnumeric(), isdecimal() (0) | 2019.11.20 |
[Python] functools의 reduce함수 (0) | 2019.11.18 |
[Python] list, set 내 map함수 (0) | 2019.11.18 |
[Python] collection 모듈의 Counter 객체 (0) | 2019.11.17 |