I have a dict as follows:
someDict = {\'a\':[], \'b\':[]}
I want to determine if this dictionary has any values which are not empty lists.
>>> someDict = {'a':[], 'b':[]} >>> all(map(lambda x: x == [], someDict.values())) True