Skip to content
Advertisement

Getting Key in Nested Dictionary

I have a dictionary like this:

JavaScript

Now I want to extract the key whenever a value from that key is searched. For example if user inputs mango it should print fruit How can I do this?

Advertisement

Answer

There is no way to directly do this to my knowledge, but you can try an iterative approach over the dictionary’s values:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement