To create an object/class as an iterator you have to implement the methods __iter__() and __next__() to your object.As you have learned in the Python Classes/Objects chapter, all classes have a function called __init__(), which allows you do some initializing when the object is ...