Python 的 any(~)
方法返回一个布尔值,指示所提供的可迭代对象的任何元素是否为 true。
参数
1. iterable
| iterable
用于检查真实元素的迭代。
返回值
一个布尔值,指示所提供的可迭代对象的任何元素是否为 true。如果 iterable 为空或 iterable 中的所有元素均为 false,则返回False
。
例子
基本用法
检查列表 a
中的任何元素是否为 true:
a = ['hi', 'bye', 'see you']
any(a)
True
由于列表 a
中的所有元素均为 true,因此返回 True
。
检查列表 b
中的任何元素是否为 true:
b = [0, False]
any(b)
False
列表 b
中的所有元素均为 false,因此返回 False
。
相关用法
- Python any用法及代码示例
- Python any()用法及代码示例
- Python NumPy any方法用法及代码示例
- Python arcgis.gis._impl._profile.ProfileManager.save_as用法及代码示例
- Python arcgis.raster.functions.ccdc_analysis用法及代码示例
- Python arcgis.geometry.functions.trim_extend用法及代码示例
- Python arcgis.raster.analytics.sample用法及代码示例
- Python arcgis.features.analysis.derive_new_locations用法及代码示例
- Python arcgis.features.analyze_patterns.calculate_density用法及代码示例
- Python arcgis.geometry.Geometry.label_point用法及代码示例
- Python ast.MatchClass用法及代码示例
- Python arcgis.plan_routes用法及代码示例
- Python arcgis.mapping.forms.FormInfo用法及代码示例
- Python arcgis.gis.UserManager.get用法及代码示例
- Python arcgis.raster.ImageryLayerCacheManager.update_tiles用法及代码示例
- Python arcgis.geometry.Geometry.true_centroid用法及代码示例
- Python arcgis.gis.User.generate_direct_access_url用法及代码示例
- Python arcgis.gis.GroupMigrationManager.create用法及代码示例
- Python arcgis.geometry.Geometry.hull_rectangle用法及代码示例
- Python arcgis.features.analysis.summarize_within用法及代码示例
- Python arcgis.geometry.filters.intersects用法及代码示例
- Python arcgis.geometry.functions.project用法及代码示例
- Python abc.ABCMeta用法及代码示例
- Python arcgis.raster.functions.percentile用法及代码示例
- Python arcgis.raster.ImageryLayer.save用法及代码示例
注:本文由纯净天空筛选整理自Arthur Yanagisawa大神的英文原创作品 Python | any method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。