Python all() 函数
定义和用法
如果可迭代对象中的所有项目都为 True,则 all()
函数返回 True,否则返回 False。
如果可迭代对象为空,则 all()
函数也返回 True。
语法
all(iterable)
参数值
参数 | 描述 |
---|---|
iterable | 可迭代对象(列表、元组、字典) |
更多示例
注意:当对字典使用时,all() 函数检查所有键是否为 True,而不是值。
如果可迭代对象中的所有项目都为 True,则 all()
函数返回 True,否则返回 False。
如果可迭代对象为空,则 all()
函数也返回 True。
all(iterable)
参数 | 描述 |
---|---|
iterable | 可迭代对象(列表、元组、字典) |
注意:当对字典使用时,all() 函数检查所有键是否为 True,而不是值。
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]