코딩하는 문과생

[Python] 순열과 조합 본문

프로그래밍/Python

[Python] 순열과 조합

코딩하는 문과생 2019. 11. 18. 18:18
from itertools import permutations
per = permutations(['빨','주','노','초'],2)

from itertools import combinations
com = combinations('1234',2)