python dict get element by value code example
Example 1: how to get the value of key in python
print(dict.get("key"))
Example 2: find key by value python
print(list(d.keys())[list(d.values()).index(990)])
print(dict.get("key"))
print(list(d.keys())[list(d.values()).index(990)])