For example, I have this:
alphabetValues = {"a":1,"b":2,"c":3,"d":4,"e":5,"f":6,"g":7...
Is it possible if instead of having:
print(alphabetValues["c"])
To having something that would get "e" if I searched for 5 in a dict.
"e":5
Thanks in advance.