I have been working on operations of dictionaries . In the below code, I want to extract the key from the value. How to do it in simpler way?
dict= { "philips": "bulb", "cisca": "led"}
print(dict.values()
I want to access "philips " from "bulb"
Thankyou