I have a dict as follows:
someDict = {\'a\':[], \'b\':[]}
I want to determine if this dictionary has any values which are not empty lists.
Quite literally:
any(x != [] for x in someDict.itervalues())