python any() all()
Posted xiaojinniu425
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python any() all()相关的知识,希望对你有一定的参考价值。
ny()
doc: Return True if any element of the iterable is true. If the iterable is empty, return False.
只要迭代器中有一个元素为真就为真。
1 In [4]: a = [True, False] 2 In [5]: any(a) 3 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)
也就是说,迭代器中所有的判断项返回都是真,结果才为真
1 In [13]: a 2 Out[13]: [True, False] 3 In [14]: all(a) 4 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
return [i for i in range(left,right+1) if not any([m == ‘0‘ or i % int(m) != 0 for m in str(i)])]
例如10 或者13
如果包含0或者无法被 13%3=0,都会从列表中去除
以上是关于python any() all()的主要内容,如果未能解决你的问题,请参考以下文章