iter1 [Python] Iterables, Iterators, and Generators References Fluent Python Contents Iterables and Iterators Generators and yield Generator Expressions itertools 모듈 (count, takewhile) Generator Functions in the Standard Library yield from Iterable Reducing Functions iter() Function 데이터 처리에서 반복을 기본입니다. 만약 데이터가 메모리에 다 들어가지 않는다면, 각 항목들을 지연(lazily)시켜 가져와야 합니다. 즉, 한 번에 하나씩 그리고 필요할 때 가져와야 합니다. 이것이 바로 이터레이터가 하는 역할입니다. 이번 포스팅에서는 이터레이터 패턴이 파이썬 언어에 어떻게 구현.. 2022. 3. 25. 이전 1 다음