Assumes that Python3 is installed as described in Getting started with Python.
1. Iterators
Iterators don’t compute the value of each item when instantiated. They only compute it when you ask for it. This is known as lazy evaluation. Lazy evaluation is useful when you have a very large data set to compute.
…