1
我想d,以評估True
當且僅當在d
所有值都爲空減少雙端隊列的字典單布爾
from collections import deque
d = {'a': deque([1,2,3]), 'b': deque([1,2,3]), 'c': deque([1,2,3])}
我已經試過reduce
,但我清楚地失去了一些東西重要。
在此先感謝!
我想d,以評估True
當且僅當在d
所有值都爲空減少雙端隊列的字典單布爾
from collections import deque
d = {'a': deque([1,2,3]), 'b': deque([1,2,3]), 'c': deque([1,2,3])}
我已經試過reduce
,但我清楚地失去了一些東西重要。
在此先感謝!
正如彼得伍德指出的那樣,not any(d.values())
很好地訣竅。
'沒有任何(d.values())' –
非常感謝! – shaz
彼得伍德,你可以輸入你的評論作爲答案,所以我可以接受它嗎? – shaz