Python/Iteration & generators 8 min
Comprehensions and generators
Lazy iteration for large or infinite sequences.
generatoryielditertools
A generator function uses yield to produce values one at a time, keeping memory flat no matter how long the sequence is.
python · editable
loading editor…
A generator expression looks like a comprehension in round brackets and pairs well with sum, any, all and max.
python · editable
loading editor…
itertools adds ready-made building blocks: islice to take the first N, chain to flatten, groupby to bucket sorted data.
python · editable
loading editor…
practice this