Skip to content

Instantly share code, notes, and snippets.

@IndhumathyChelliah
Created August 9, 2020 23:28
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/0a16b0b475cc2bc53fe1dafa86c840da to your computer and use it in GitHub Desktop.
Save IndhumathyChelliah/0a16b0b475cc2bc53fe1dafa86c840da to your computer and use it in GitHub Desktop.
l1=[1,2,3,4]
l2=['a','b','c','d']
d1=zip(l1,l2)
print (d1)#Output:<zip object at 0x01149528>
#Converting zip object to dict using dict() contructor.
print (dict(d1))
#Output:{1: 'a', 2: 'b', 3: 'c', 4: 'd'}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment