Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How would one create an iterative function (or iterator object) in python?

share|improve this question

5 Answers

up vote 128 down vote accepted

Iterator objects in python conform to the iterator protocol, which basically means they provide two methods: __iter__() and next(). The __iter__ returns the iterator object and is implicitly called at the start of loops. The next() method returns the next value and is implicitly called at each loop increment. next() raises a StopIteration exception when there are no more value to return, which is implicitly captured by looping constructs to stop iterating.

Here's a simple example of a counter:

class Counter:
    def __init__(self, low, high):
        self.current = low
        self.high = high

    def __iter__(self):
        return self

    def next(self):
        if self.current > self.high:
            raise StopIteration
        else:
            self.current += 1
            return self.current - 1


for c in Counter(3, 8):
    print c

This will print:

3
4
5
6
7
8

This is easier to write using a generator, as covered in a previous answer:

def counter(low, high):
    current = low
    while current <= high:
        yield current
        current += 1

for c in counter(3, 8):
    print c

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.

share|improve this answer
1  
Incredibly useful, thank you. – Michael van der Westhuizen May 21 '12 at 14:32
7  
Note that the next() function does not yield values, it returns them. – John Mee Oct 17 '12 at 7:03

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:

yield

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:

 def count(n=0):
     while True:
         yield n
         n += 1

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:

gen = (n for n in xrange(0,11))

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.

share|improve this answer
13  
as of python 3.0 there is no longer an xrange() and the new range() behaves like the old xrange() – hop Dec 18 '08 at 17:30
4  
You should still use xrange in 2._, because 2to3 translates it automatically. – Phob Jul 22 '11 at 18:03

There are four ways to build an iterative function:

Examples:

# generator
def uc_gen(text):
    for char in text:
        yield char.upper()

# generator expression
def uc_genexp(text):
    return (char.upper() for char in text)

 # iterator protocol
 class uc_iter():
     def __init__(self, text):
         self.text = text
         self.index = 0
     def __iter__(self):
         return self
     def __next__(self):
         try:
             result = self.text[self.index].upper()
         except IndexError:
             raise StopIteration
         self.index += 1
         return result

 # getitem method
 class uc_getitem():
     def __init__(self, text):
         self.text = text
     def __getitem__(self, index):
         result = self.text[index].upper()
         return result
share|improve this answer

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 __next__(), not next(). Otherwise it's pretty much the same AFAIK.

Source: PEP 3114

share|improve this answer

I see some of you doing return self in __iter__. I just wanted to note that __iter__ itself can be a generator (thus removing the need for __next__ and raising StopIteration exceptions)

class range:
  def __init__(self,a,b):
    self.a = a
    self.b = b
  def __iter__(self):
    i = self.a
    while i < self.b:
      yield i
      i+=1

Of course here one might as well directly make a generator, but for more complex classes it can be useful.

share|improve this answer
Great! It so boring writing just return self in __iter__. When I was going to try using yield in it I found your code doing exactly what I want to try. – Ray Feb 5 at 19:32
But in this case, how would one implement next()? return iter(self).next()? – Lenna Apr 5 at 19:52
@Lenna, it is already "implemented" because iter(self) returns an iterator, not a range instance. – Manux Apr 7 at 17:31
@Manux iter(range(5,10)).next() is a bit cumbersome. Admittedly a bad example for next behavior. I'm still interested in how to give the range instance a next attribute. – Lenna Apr 24 at 19:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.