Table of Contents
The Python iter() function returns an iterator for the given object.
The iter() function creates an object which can be iterated one element at a time.
These objects are useful when coupled with loops like for loop, while loop.
The syntax of the iter() function is:
iter(object, sentinel)
1. iter() Parameters
The iter() function takes two parameters:
- object – object whose iterator has to be created (can be sets, tuples, etc.)
- sentinel (optional) – special value that is used to represent the end of a sequence
2. Return value from iter()
- The
iter()function returns an iterator object for the given object. - If the user-defined object doesn’t implement
__iter__(), and__next__()or__getitem()__, theTypeErrorexception is raised. - If the sentinel parameter is also provided,
iter()returns an iterator until the sentinel character isn’t found.
3. Example 1: Working of Python iter()
# list of vowels vowels = ['a', 'e', 'i', 'o', 'u'] vowels_iter = iter(vowels) print(next(vowels_iter)) # 'a' print(next(vowels_iter)) # 'e' print(next(vowels_iter)) # 'i' print(next(vowels_iter)) # 'o' print(next(vowels_iter)) # 'u'
Output
a e i o u
4. Example 2: iter() for custom objects
class PrintNumber:
def __init__(self, max):
self.max = max
def __iter__(self):
self.num = 0
return self
def __next__(self):
if(self.num >= self.max):
raise StopIteration
self.num += 1
return self.num
print_num = PrintNumber(3)
print_num_iter = iter(print_num)
print(next(print_num_iter)) # 1
print(next(print_num_iter)) # 2
print(next(print_num_iter)) # 3
# raises StopIteration
print(next(print_num_iter))
Output
1 2 3 Traceback (most recent call last): File "", line 23, in File "", line 11, in __next__ StopIteration
5. Example 3: iter() with sentinel parameter
class DoubleIt:
def __init__(self):
self.start = 1
def __iter__(self):
return self
def __next__(self):
self.start *= 2
return self.start
__call__ = __next__
my_iter = iter(DoubleIt(), 16)
for x in my_iter:
print(x)
Output
2 4 8
Here, we have implemented a custom iterable object without a StopIteration condition.
However, we can use the iter() method with the sentinel parameter to stop the iteration. If the value returned from __next__() is equal to sentinel, StopIteration will be raised, otherwise, the value will be returned.
Recommended Reading: Python Iterators
Related posts:
Python Shallow Copy and Deep Copy
Python String index()
Python classmethod()
Python Program to Swap Two Variables
Python Set clear()
Introduction to Scientific Programming with Python - Joakim Sundnes
Python Multiple Inheritance
Python Modules
Python Dictionary values()
Python Program to Print the Fibonacci sequence
Python Program to Convert Decimal to Binary, Octal and Hexadecimal
Python Program to Print Hello world!
Python Program to Create Pyramid Patterns
Python String lstrip()
Python Program to Check if a Number is Positive, Negative or 0
Python Program to Find Numbers Divisible by Another Number
Python Machine Learning Eqution Reference - Sebastian Raschka
Deep Learning in Python - LazyProgrammer
Python len()
Python Program to Return Multiple Values From a Function
Python String title()
Python String encode()
Machine Learning Applications Using Python - Cases studies form Healthcare, Retail, and Finance - Pu...
Python exec()
Python Program to Append to a File
Python Program to Differentiate Between type() and isinstance()
Python Program to Check the File Size
Python Program to Check Prime Number
Python Program to Print all Prime Numbers in an Interval
Python slice()
Python divmod()
Python type()