Creating Our Own Iterators
Let's find out how we can make our own iterators.
We'll cover the following...
Occasionally we will want to create our own custom iterators. Python makes this very easy to do. All we need to do is implement the __iter__
and __next__
methods in our class.
Creating an iterator for string of letters
Let’s create an iterator that can iterate over a string of letters:
Access this course and 1400+ top-rated courses and projects.