Skip to content

Instantly share code, notes, and snippets.

@IndhumathyChelliah
Created August 10, 2020 05:26
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/9724776786cc5925e08ce545de5c435c to your computer and use it in GitHub Desktop.
Save IndhumathyChelliah/9724776786cc5925e08ce545de5c435c to your computer and use it in GitHub Desktop.
l1 = [[1,2],[3,4],[5,[6,7]]]
d1={x[0]:x[1] for x in l1}
print(d1)#Output:{1: 2, 3: 4, 5: [6, 7]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment