without haste but without rest

[python] 순열, 조합 (경우의 수) 내장 라이브러리 샘플 코드 본문

ProgrammingLanguage/Python

[python] 순열, 조합 (경우의 수) 내장 라이브러리 샘플 코드

JinungKim 2020. 9. 8. 20:38

순열

 

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))))

 

Comments