python内置方法 3.any()函数

 1 """
 2 any() 函数用于判断给定的可迭代参数 iterable 是否全部为 False,则返回 False,如果有一个为 True,则返回 True。
 3 
 4 元素除了是 0、空、FALSE.None 外都算 TRUE。
 5 
 6 函数等价于:
 7 """
 8 
 9 
10 def any(iterable):
11     for element in iterable:
12         if element:
13             return True
14     return False
15 # 只有可迭代对象全部不是false时才返回False,只要有一个True就返回True
16 # 语法
17 # any(iterable)
18 print(any([None]))
19 print(any([]))   # any函数中 空列表是返回False的

 

上一篇:基于SpringBoot2开发WebApi(六)JWT(json web token)集成


下一篇:errno: 150 “Foreign key constraint is incorrectly formed”