Skip to content

Instantly share code, notes, and snippets.

@vinimonteiro
Created February 6, 2021 17:57
Show Gist options
  • Save vinimonteiro/64f0be7c402f7a961d8d4f506d3002d8 to your computer and use it in GitHub Desktop.
Save vinimonteiro/64f0be7c402f7a961d8d4f506d3002d8 to your computer and use it in GitHub Desktop.
dict comprehension
>>> squares = {i:i*i for i in range(6)}
>>> squares
{0: 0, 1: 1, 2: 4, 3: 9, 4: 16, 5: 25}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment