I have a dictionary with values as sets. I want to find the key whose value contains a particular value.
e.g. aa={'a':set([5,6,7]),'b':set([1,2]),'1':set(['c','v']),'2':set(['y','m'])}
If I am want to find the key with value containing 'm', it should return 2.