Skip to content

Instantly share code, notes, and snippets.

@IndhumathyChelliah
Created July 23, 2020 01:31
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/f826769f94379f4af6127d58faf8d826 to your computer and use it in GitHub Desktop.
Save IndhumathyChelliah/f826769f94379f4af6127d58faf8d826 to your computer and use it in GitHub Desktop.
#set
a={1,2,3,4,5}
#Converting set(iterable) into iterator object using iter() function.
b=iter(a)
print (b)#Output:<set_iterator object at 0x029794E8>
print (type(b))#Output:<class 'set_iterator'>
#Applying next() over the iterator.
#Returns one element at a time
print (next(b))#Output:1
print (next(b))#Output:2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment