Python内置all函数详细介绍
程序员文章站
2022-05-06 14:06:13
...
英文文档:
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
说明:
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内置all函数详细介绍的详细内容,更多请关注其它相关文章!
推荐阅读
-
Python标准库内置函数complex介绍
-
Python内置函数locals和globals对比
-
PHP文件锁函数flock()详细介绍
-
Python字符串内置函数使用
-
python中string模块各属性以及函数的用法介绍
-
Python中字符串String的基本内置函数与过滤字符模块函数的基本用法
-
Python编程之Re模块下的函数介绍
-
Python常见内置高效率函数用法示例
-
Python入门及进阶笔记 Python 内置函数小结
-
Python有用的内置函数divmod,id,sorted,enumerate,input,oct,eval,exec,isinstance,ord,chr,filter,vars,zip