Python itertools 모듈의 용도로 올바른 것은?
보통 freeCodeCamp해설
itertools는 효율적인 이터레이터 유틸리티를 제공합니다. chain(여러 이터러블 연결), product(데카르트 곱), permutations(순열), combinations(조합), cycle(무한 반복), islice(슬라이싱) 등이 있으며, 메모리 효율적으로 동작합니다.
itertools는 효율적인 이터레이터 유틸리티를 제공합니다. chain(여러 이터러블 연결), product(데카르트 곱), permutations(순열), combinations(조합), cycle(무한 반복), islice(슬라이싱) 등이 있으며, 메모리 효율적으로 동작합니다.