首页 > 代码库 > Python标准库:内置函数any(iterable)

Python标准库:内置函数any(iterable)

如果可迭代的对象的所有元素中只要有一个元素为True就返回True,否则返回False。或者可迭代对象为空,也返回False。这个函数主要用来判断列表、元组、字典等对象是否有元素为True,提高计算速度,与之等效的代码如下:

def any(iterable):

    for element in iterable:

        if element:

            return True

    return False

 

例子:

#any()函数
a = []
b = {}
c = (1, 3, 4)
d = (None, 1, 3)

print(‘a:‘, any(a), ‘b:‘, any(b), ‘c:‘, any(c), ‘d:‘, any(d))

输出结果如下:

a: False b: False c: True d: True


蔡军生 QQ:9073204  深圳

Python标准库:内置函数any(iterable)