gpt4 book ai didi

Python:根据索引集从列表中选择子集

转载 作者:IT老高 更新时间:2023-10-28 21:32:24 24 4
gpt4 key购买 nike

我有几个列表具有相同数量的条目(每个都指定一个对象属性):

property_a = [545., 656., 5.4, 33.]
property_b = [ 1.2, 1.3, 2.3, 0.3]
...

并列出具有相同长度的标志

good_objects = [True, False, False, True]

(可以很容易地用等效的索引列表代替:

good_indices = [0, 3]

生成新列表 property_aselproperty_bsel、... 的最简单方法是什么,这些列表仅包含 True 指示的值条目还是索引?

property_asel = [545., 33.]
property_bsel = [ 1.2, 0.3]

最佳答案

您可以使用 list comprehension :

property_asel = [val for is_good, val in zip(good_objects, property_a) if is_good]

property_asel = [property_a[i] for i in good_indices]

后一种更快,因为 good_indicesproperty_a 的长度少,假设 good_indices 是预先计算的而不是生成的-飞。


Edit:第一个选项等价于 Python 2.7/3.1 以来可用的 itertools.compress。见 @Gary Kerr的答案。

property_asel = list(itertools.compress(property_a, good_objects))

关于Python:根据索引集从列表中选择子集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3179106/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com