標籤:python any all pop built-in functions
any()
doc: Return True if any element of the iterable is true. If the iterable is empty, return False.
只要迭代器中有一個元素為真就為真。
In [4]: a = [True, False] In [5]: any(a) Out[5]: True
也就是說,整個迭代中返回所有的真假判斷中有一個真就是真,就好像說一箱子雞蛋中只要有一個壞了,我們就認定這廂雞蛋壞了。
In [6]: b = ['good','bad','good','good'] In [7]: any(i=='bad' for i in b) Out[7]: True
把壞的雞蛋扔了
In [9]: b.pop(1) Out[9]: 'bad' In [10]: any(i=='bad' for i in b) Out[10]: False
結果就想法了,如果對於單個元素的判斷,有點像 ‘bad‘
all()
doc:Return True if all elements of the iterable are true (or if the iterable is empty)
也就是說,迭代器中所有的判斷項返回都是真,結果才為真
In [13]: a Out[13]: [True, False] In [14]: all(a) Out[14]: False
如果一箱子雞蛋全都好,才算好。
In [15]: b Out[15]: ['good', 'good', 'good', 'bad'] In [16]: all('good'== i for i in b) Out[16]: False
有一個壞的,返回false
In [17]: b.pop() Out[17]: 'bad' In [18]: all('good'== i for i in b) Out[18]: True 剔除不好的,全都為good,結果為True
文檔地址
著作權聲明:本文為博主原創文章,未經博主允許不得轉載。
Python 之 any與all 方法