Skip to content

Instantly share code, notes, and snippets.

@IndhumathyChelliah
Created August 9, 2020 23:45
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/a3ad3865e7dd7bf5863b1ecf015f27fe to your computer and use it in GitHub Desktop.
Save IndhumathyChelliah/a3ad3865e7dd7bf5863b1ecf015f27fe to your computer and use it in GitHub Desktop.
l1=[1,2,3,4,5,6,7]
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