How would one create an iterative function (or iterator object) in python?
|
Iterator objects in python conform to the iterator protocol, which basically means they provide two methods: Here's a simple example of a counter:
This will print:
This is easier to write using a generator, as covered in a previous answer:
The printed output will be the same. Under the hood, the generator object supports the iterator protocol and does something roughly similar to the class Counter. David Mertz's article, Iterators and Simple Generators, is a pretty good introduction. |
|||||||||
|
|
First of all the itertools module is incredibly useful for all sorts of cases in which an iterator would be useful, but here is all you need to create an iterator in python:
Isn't that cool? Yield can be used to replace a normal return in a function. It returns the object just the same, but instead of destroying state and exiting, it saves state for when you want to execute the next iteration. Here is an example of it in action pulled directly from the itertools function list:
As stated in the functions description (it's the count() function from the itertools module...) , it produces an iterator that returns consecutive integers starting with n. Generator expressions are a whole other can of worms (awesome worms!). They may be used in place of a List Comprehension to save memory (list comprehensions create a list in memory that is destroyed after use if not assigned to a variable, but generator expressions can create a Generator Object... which is a fancy way of saying Iterator). Here is an example of a generator expression definition:
This is very similar to our iterator definition above except the full range is predetermined to be between 0 and 10. I just found xrange() (suprised I hadn't seen it before...) and added it to the above example. xrange() is an iterable version of range() which has the advantage of not prebuilding the list. It would be very useful if you had a giant corpus of data to iterate over and only had so much memory to do it in. |
||||
|
There are four ways to build an iterative function:
Examples:
|
|||
|
|
|
Addendum to ars' post: the code sample he provides for the Counter works in Python 2.x, but not in Python 3.x. In Python 3.x, you need to define the method Source: PEP 3114 |
||||
|
|
|
I see some of you doing
Of course here one might as well directly make a generator, but for more complex classes it can be useful. |
|||||||||
|