Finding the key to a value

Published

Use a list comprehension:

hit = [k for k,v in dict.items() if v==lookingfor]