标签: python python-2.7
如果True中的所有值都为空,我希望评估为d
True
d
from collections import deque d = {'a': deque([1,2,3]), 'b': deque([1,2,3]), 'c': deque([1,2,3])}
我已经尝试reduce,但我明显遗漏了一些重要的事情。
reduce
提前致谢!
答案 0 :(得分:1)
正如彼得伍德亲切地指出的那样,not any(d.values())很好地完成了这个伎俩。
not any(d.values())