i am a reading the chapter on operator over flow and am very confused how __iter__ works. I have gone to several websites to find different examples but still dont quite understand how it works. I am wondering if someone has a really simple approach to on how to understand this function. Main problem on def__iter__(self): return self i dont see how this works or the steps on how this works.
|
|
|||||||||
|
|
An iterator need only define one method*: * Actually that was a lie: the iterator must implement the According to the docs http://docs.python.org/library/stdtypes.html#iterator-types
|
|||
|
|
|
As simply as I can put it:
The iterator object that The What's great about this is it lets you define how your object is iterated, and |
||||
|
|
|
The specs for "Being an iterator" means "having a In Python 2.6 and higher, the best way to implement an iterator is generally to use the appropriate abstract base class from the
an instance of this class will return infinitely many copies of |
|||||||||
|
|
A class supporting the __iter__ method will return an iterator object instance: an object supporting the next() method. This object will be usuable in the statements "for" and "in". |
|||
|
|
|
In Python, an iterator is any object that supports the iterator protocol. Part of that protocol is that the object must have an The other part of the protocol is the Once you have an object that returns the next thing in a sequence, you can collapse a for loop that looks like this:
into this:
Notice that there is nowhere where we have code that gets the next value of i because range(10) is an object that FOLLOWS the iterator protocol, and the list comprehension is a construct that USES the iterator protocol. You can also USE the iterator protocol directly. For instance, when writing scripts to process CSV files, I often write this:
I am using the iterator directly by calling |
|||
|
|