Skip to content

Instantly share code, notes, and snippets.

@IndhumathyChelliah
Created July 23, 2020 03:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IndhumathyChelliah/e4a4127b19b486c10b080dff7f54167c to your computer and use it in GitHub Desktop.
Save IndhumathyChelliah/e4a4127b19b486c10b080dff7f54167c to your computer and use it in GitHub Desktop.
l1=[1,2,3,4,5]
#Converting to iterator object
l2=iter(l1)
print (type(l2))#Output:<class 'list_iterator'>
print (next(l2))#Output:1
print (next(l2))#Output:2
#Iterator will go forward only.
#First and second element are already iterated, so for loop starts iterating from third element only.
for i in l2:
print ("The next element is ",i)
'''
Output:
The next element is 3
The next element is 4
The next element is 5
'''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment