Skip to content

Instantly share code, notes, and snippets.

@IndhumathyChelliah
Created July 24, 2020 02:58
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/62a7c932a12d2b5a63004018609dcfa7 to your computer and use it in GitHub Desktop.
Save IndhumathyChelliah/62a7c932a12d2b5a63004018609dcfa7 to your computer and use it in GitHub Desktop.
l1=[1,2,3,4,5]
#returns an iterator
l2=iter(l1)
print (l2)#Output:<list_iterator object at 0x00EAE658>
#calling iter() function on iterator itself.
l3=iter(l2)
print (l3)#Output:<list_iterator object at 0x00EAE658>
print (l2==l3)#Output:True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment