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