목록조합 (1)
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
2020. 9. 8. 20:38