Using the finite iterators
The itertools
module provides a number of functions that we can use to produce finite sequences of values. We'll look at ten functions in this module, plus some related built-in functions:
enumerate()
: This function is actually part of the__builtins__
package, but it works with an iterator and is very similar to other functions in theitertools
module.accumulate()
: This function returns a sequence of reductions of the input iterable. It's a higher-order function and can do a variety of clever calculations.chain()
: This function combines multiple iterables serially.groupby()
: This function uses a function to decompose a single iterable into a sequence of iterables over subsets of the input data.zip_longest()
: This function ...
Get Functional Python Programming now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.