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 thePython Classes/Objectschapter, all classes have a function called__init__(), which allows you do some initializing when the object is being create...