Python Iterator Tips
Python’s iterator protocol is a powerful tool in your arsenal.
An Iterator
is an object that returns streams of data.
To be an iterator an instance just have to have a next() method.
Repeated calls to the iterator’s next() method return successive items in the
stream. When no …