without haste but without rest
[python] 순열, 조합 (경우의 수) 내장 라이브러리 샘플 코드 본문
순열
from itertools import permutations
my_list = ['0', '1', '2', '3']
print(list(map(''.join, permutations(my_list, 2))))
조합
from itertools import combinations
my_list = ['0', '1', '2', '3']
print(list(map(''.join, combinations(my_list, 2))))
'ProgrammingLanguage > Python' 카테고리의 다른 글
[python] json dump 메소드 사용시 한글 깨짐 현상 (0) | 2021.02.05 |
---|---|
[python] 모듈 미설치 예외처리 샘플 (0) | 2021.01.04 |
[python] 파이참에서 아나콘다 가상환경으로 작업하기 (0) | 2020.07.15 |
[python] 알파뱃 리스트 (0) | 2020.07.10 |
[python] Counter 함수 (0) | 2020.05.18 |
Comments