Python内置函数(32)——all

Posted 所爱隔山海,山海不可平

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python内置函数(32)——all相关的知识,希望对你有一定的参考价值。

英文文档:

all(iterable)

    Return True if all elements of the iterable are true (or if the iterable is empty). Equivalent to:

def all(iterable):
    for element in iterable:
        if not element:
            return False
    return True

   判断可迭代对象的每个元素都是 True 值

说明:

    1. 接受一个可迭代器对象为参数,当参数为空或者不为可迭代器对象是报错

>>> all(2) #传入数值报错
Traceback (most recent call last):
  File "<pyshell#9>", line 1, in <module>
    all(2)
TypeError: ‘int‘ object is not iterable

     2. 如果可迭代对象中每个元素的逻辑值均为True时,返回True,否则返回False

>>> all([1,2]) #列表中每个元素逻辑值均为True,返回True
True
>>> all([0,1,2]) #列表中0的逻辑值为False,返回False
False

     3. 如果可迭代对象为空(元素个数为0),返回True

>>> all(()) #空元组
True
>>> all({}) #空字典
True

以上是关于Python内置函数(32)——all的主要内容,如果未能解决你的问题,请参考以下文章

python高级内置函数和各种推导式的介绍:一行搞定的代码

python内置函数(上篇)

[python] 之all()和any()内置函数

Python内置函数之all()

python内置函数每日一学 -- all()

补上:第24天学习python 内置函数输出对应的代码