英文文档:
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 iterable2. 如果可迭代对象中每个元素的逻辑值均为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函数详细介绍的详细内容,更多请关注php中文网其它相关文章!
python怎么学习?python怎么入门?python在哪学?python怎么学才快?不用担心,这里为大家提供了python速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号