Last active
April 20, 2020 12:22
-
-
Save workze/afd750b1f65f5a632996a57ac7b4464e to your computer and use it in GitHub Desktop.
python dict map
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
data = { 'k1': "v1", "k2": "v2" } | |
for key,value in data.items(): | |
pass | |
data.keys() | |
data.values() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment