Skip to content

Instantly share code, notes, and snippets.

@IndhumathyChelliah
Created July 23, 2020 02:35
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/37867ae8fdb12d66c7865283dbf44814 to your computer and use it in GitHub Desktop.
Save IndhumathyChelliah/37867ae8fdb12d66c7865283dbf44814 to your computer and use it in GitHub Desktop.
l1=[1,2,3,4,5]
#Converting to iterator object
l2=iter(l1)
#Converting iterator(l2) to tuple using tuple() constructor
t1=tuple(l2)
print (t1)#Output:(1, 2, 3, 4, 5)
d1=[(1,'a'),(2,'b'),(3,'c')]
#Converting to itertaor object
d2=iter(d1)
#Converting iterator(d2) to dictionary using dict() constructor.
d3=dict(d2)
print (d3)#Output:{1: 'a', 2: 'b', 3: 'c'}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment