How can I perform the following operations on a dictionary, provided all my values are unique and unsorted.
key : value
152 : 780
87 : 688
2165 : 15
- I want to get all keys.
- I want to find key for value 688
- I want to get all values.
Preferably, without a loop and without having to maintain the key-value relation in an external object.
I sometimes miss, python for these sort of things.