Skip to content

Instantly share code, notes, and snippets.

@workze
Last active April 20, 2020 12:22
Show Gist options
  • Save workze/afd750b1f65f5a632996a57ac7b4464e to your computer and use it in GitHub Desktop.
Save workze/afd750b1f65f5a632996a57ac7b4464e to your computer and use it in GitHub Desktop.
python dict map
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