How can I get all keys which contain the specific value in dictionary?
For Example:- This is dictionary which holds simple data.
{'h':['123,'4'], 'm':['456':'4'], 'a':['123,'4']}
If I enter a value of 4, prints all the keys which containing the number. This is the output.
{'h', 'm', 'a'}