Skip to content

Instantly share code, notes, and snippets.

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