用法:
itertools.compress(data, selectors)
创建一个从
data
过滤元素的迭代器,仅返回那些在selectors
中具有相应元素且计算结果为True
的元素。当data
或selectors
迭代已用尽时停止。大致相当于:def compress(data, selectors): # compress('ABCDEF', [1,0,1,0,1,1]) --> A C E F return (d for d, s in zip(data, selectors) if s)
3.1 版中的新函数。
相关用法
- Python itertools.combinations_with_replacement用法及代码示例
- Python itertools.combinations用法及代码示例
- Python itertools.count用法及代码示例
- Python itertools.chain.from_iterable用法及代码示例
- Python itertools.chain用法及代码示例
- Python itertools.cycle用法及代码示例
- Python itertools.takewhile用法及代码示例
- Python itertools.dropwhile用法及代码示例
- Python itertools.repeat用法及代码示例
- Python itertools.groupby()用法及代码示例
- Python itertools.repeat()用法及代码示例
- Python itertools.starmap用法及代码示例
- Python itertools.filterfalse用法及代码示例
- Python itertools.groupby用法及代码示例
- Python itertools.zip_longest用法及代码示例
- Python itertools.accumulate用法及代码示例
- Python itertools.tee用法及代码示例
- Python itertools.permutations用法及代码示例
- Python itertools.product用法及代码示例
- Python itertools.islice用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 itertools.compress。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。