Skip to content

Instantly share code, notes, and snippets.

@SVilgelm
Last active October 10, 2018 13:19
Show Gist options
  • Save SVilgelm/6027517 to your computer and use it in GitHub Desktop.
Save SVilgelm/6027517 to your computer and use it in GitHub Desktop.
Get key from dict by value
def get_key_from_dict_by_value(dictionary, value):
for k in dictionary:
if dictionary[k] == value:
return k
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment