Python Iterators
Last updated
Was this helpful?
Last updated
Was this helpful?
Iterators are objects that can be iterated upon. In this tutorial, you will learn how iterator works and how you can build your own iterator using __iter__ and __next__ methods.
Iterators are everywhere in Python. They are elegantly implemented within for
loops, comprehensions, generators etc. but are hidden in plain sight.
Iterator in Python is simply an that can be iterated upon. An object which will return data, one element at a time.
Technically speaking, a Python iterator object must implement two special methods, __iter__()
and __next__()
, collectively called the iterator protocol.
An object is called iterable if we can get an iterator from it. Most built-in containers in Python like: , , etc. are iterables.
The iter()
function (which in turn calls the __iter__()
method) returns an iterator from them.
We use the next()
function to manually iterate through all the items of an iterator. When we reach the end and there is no more data to be returned, it will raise the StopIteration
Exception. Following is an example.
Output
As we see in the above example, the for
loop was able to iterate automatically through the list.
In fact the for
loop can iterate over any iterable. Let's take a closer look at how the for
loop is actually implemented in Python.
Is actually implemented as.
So internally, the for
loop creates an iterator object, iter_obj
by calling iter()
on the iterable.
Inside the loop, it calls next()
to get the next element and executes the body of the for
loop with this value. After all the items exhaust, StopIteration
is raised which is internally caught and the loop ends. Note that any other kind of exception will pass through.
Building an iterator from scratch is easy in Python. We just have to implement the __iter__()
and the __next__()
methods.
The __iter__()
method returns the iterator object itself. If required, some initialization can be performed.
The __next__()
method must return the next item in the sequence. On reaching the end, and in subsequent calls, it must raise StopIteration
.
Here, we show an example that will give us the next power of 2 in each iteration. Power exponent starts from zero up to a user set number.
Output
We can also use a for
loop to iterate over our iterator class.
It is not necessary that the item in an iterator object has to be exhausted. There can be infinite iterators (which never ends). We must be careful when handling such iterators.
Here is a simple example to demonstrate infinite iterators.
We can see that the int()
function always returns 0. So passing it as iter(int,1)
will return an iterator that calls int()
until the returned value equals 1. This never happens and we get an infinite iterator.
We can also build our own infinite iterators. The following iterator will, theoretically, return all the odd numbers.
A sample run would be as follows.
And so on...
Be careful to include a terminating condition, when iterating over these types of infinite iterators.
The advantage of using iterators is that they save resources. Like shown above, we could get all the odd numbers without storing the entire number system in memory. We can have infinite items (theoretically) in finite memory.
A more elegant way of automatically iterating is by using the . Using this, we can iterate over any object that can return an iterator, for example list, string, file etc.
Ironically, this for
loop is actually an infinite .
If you do not have any idea about object-oriented programming, visit .
The iter()
function can be called with two arguments where the first argument must be a callable object (function) and second is the sentinel. The iterator calls this function until the returned value is equal to the sentinel.
There's an easier way to create iterators in Python. To learn more visit: .