Python Programming Training Certification
![](../../../../resource/img/icons/time_management.png)
Flexible Hours
![](../../../../resource/img/icons/Checklist-clipart.png)
100 Assignments
![](../../../../resource/img/icons/users.png)
Instructor Led online Training
![](../../../../resource/img/icons/icon-big-lms.png)
50 LMS Access
![](../../../../resource/img/icons/24x7acces.png)
24X7 Support
![](../../../../resource/img/icons/promtsupport.png)
100% Skill Level
Enquire Now
Course Overview
![](../../../../resource/img/python-certification.jpg)
Python iter() Function
The python iter() function is used to return an iterator object. It creates an object which can be iterated one element at a time.
Signature
- iter(object, sentinel)
Parameters
object: An iterable object.
sentinel (optional)- It is a special value that represents the end of a sequence.
Return
It returns an iterator object.
Python iter() Function Example 1
The below example shows the working of iter().
- # list of numbers
list = [1,2,3,4,5]listIter = iter(list)
# prints ‘1’
print(next(listIter))# prints ‘2’
print(next(listIter))# prints ‘3’
print(next(listIter))# prints ‘4’
print(next(listIter))# prints ‘5’
print(next(listIter))
Output:
- 1
2
3
4
5
Explanation: In the above example, iter() function converts an list iterable to an iterator.
Candidate’s Journey During Our Training Program
Expert’s Advice & Selection of Module
Choosing the right type of module for the training is half the battle & Our Team of experts will help & guide you.
Get Trained
Get Trained & Learn End to End Implementation from our Expert Trainer who are working on the same domain.
Work on Projects
We Do make our student’s work on multiple case studies , scenario based tasks & projects in order to provide real-time exposure to them.
Placements
We have a dedicated placement cell in order to provide placement assistance & relevant interviews to our candididates till selection
Placement Partner