Created
February 6, 2021 17:57
-
-
Save vinimonteiro/64f0be7c402f7a961d8d4f506d3002d8 to your computer and use it in GitHub Desktop.
dict comprehension
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> 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