Skip to content

Instantly share code, notes, and snippets.

@eyaltrabelsi
Created June 21, 2019 20:03
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 eyaltrabelsi/2e05ea4065804f43e6d72f1a10259dcf to your computer and use it in GitHub Desktop.
Save eyaltrabelsi/2e05ea4065804f43e6d72f1a10259dcf to your computer and use it in GitHub Desktop.
Python-tricks dictionary comrehension
>>> m = {x: x ** 2 for x in range(5)}
>>> m
{0: 0, 1: 1, 2: 4, 3: 9, 4: 16}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment