오늘은 파이썬 라이브러리 중 하나인 itertools에 대해 알아보겠습니다~! 알고리즘을 풀면 조합과 순열 개념이 자주 등장하는데요, itertools 라이브러리를 이용하면 조합과 순열을 쉽게 구할 수 있답니당. itertools : 효율적인 루핑을 위한 이터레이터를 만드는 함수 itertools에는 여러가지 함수들이 많이 있는데, 그 중 조합형 이터레이터인 - combinations() - combinations_with_replacement() - product() - permutations() 에 대해 알아봅시다. combinations(iterable, r) : iterable에서 원소 개수가 r개인 조합 뽑기 from itertools import combinations l = [1,2,3] f..