This question already has an answer here:
- Inverse dictionary lookup in Python 14 answers
I am trying to return the key in a dictionary given a value
in this case if 'b' is in the dictionary, I want it to return the key at which 'b' is (i.e 2)
def find_key(input_dict, value):
if value in input_dict.values():
return UNKNOWN #This is a placeholder
else:
return "None"
print(find_key({1:'a', 2:'b', 3:'c', 4:'d'}, 'b'))
The answer I want to get is the key 2, but I am unsure what to put in order to get the answer, any help would be much appreciated
Amend your function as such:
Then to get the first key (or
None
if not present)To get all positions:
Or, to get 'n' many keys:
Note - the keys you get will be 'n' many in the order the dictionary is iterated.
If you're doing this more often than not (and your values are hashable), then you may wish to transpose your dict
Return first matching key:
Return all matching keys as a set:
Values in a dictionary are not necessarily unique. The first option returns
None
if there is no match, the second returns an empty set for that case.Since the order of dictionaries is arbitrary (dependent on what keys were used and the insertion and deletion history), what is considered the 'first' key is arbitrary too.
Demo:
Note that we need to loop over the values each time we need to search for matching keys. This is not the most efficient way to go about this, especially if you need to match values to keys often. In that case, create a reverse index:
Now you can ask for the set of keys directly in O(1) (constant) time:
This uses sets; the dictionary has no ordering so either, sets make a little more sense here.