码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2014-10-31 13:54:51      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:style   blog   for   sp   on   2014   log   代码   bs   

如果可迭代的对象的所有元素中只要有一个元素为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)

标签:style   blog   for   sp   on   2014   log   代码   bs   

原文地址:http://blog.csdn.net/caimouse/article/details/40652697

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!