用法:
all(iterable)
如果
iterable
的所有元素都为真(或者如果迭代为空),则返回True
。相当于:def all(iterable): for element in iterable: if not element: return False return True
相关用法
- Python all()用法及代码示例
- Python ast.MatchClass用法及代码示例
- Python abc.ABCMeta用法及代码示例
- Python ast.ListComp用法及代码示例
- Python ast.Lambda用法及代码示例
- Python asyncio.BaseTransport.get_extra_info用法及代码示例
- Python ast.IfExp用法及代码示例
- Python unittest assertNotIsInstance()用法及代码示例
- Python ast.Return用法及代码示例
- Python Tkinter askopenfile()用法及代码示例
- Python ast.Subscript用法及代码示例
- Python asyncio.shield用法及代码示例
- Python asyncio.run用法及代码示例
- Python argparse.ArgumentParser.convert_arg_line_to_args用法及代码示例
- Python unittest assertIsNotNone()用法及代码示例
- Python unittest assertFalse()用法及代码示例
- Python asyncio.wait_for用法及代码示例
- Python abc.abstractmethod用法及代码示例
- Python any用法及代码示例
- Python asyncio.create_task用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 all。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。