gpt4 book ai didi

python - 基于Python中的某些值拆分列表?

转载 作者:行者123 更新时间:2023-11-28 21:32:08 26 4
gpt4 key购买 nike

我有 3 个列表,

a = ['Good', '24.97 %']
b = ['Bad', '75.03 %']
c = [('Amount', 0.20),
('Decision1', -0.149),
('Unit', 0.128),
('Decision2', -0.120),
('Decision3', 0.038),
('Matches', 0.016)]

Good 对应于列表 c 中的负值,bad 对应于正值,所以我必须将其分离到一个新列表中,例如

Good = ['Good', '24.97 %', ('Decision1', -0.149), ('Decision2', -0.120)]

Bad = ['Bad', '75.03 %', ('Amount', 0.20),('Unit', 0.128),('Decision3', 0.038),
('Matches', 0.016)]

最佳答案

使用列表理解来获取否定和肯定并将它们附加到其他列表:

good = a + [x for x in c if x[1] < 0]
bad = b + [x for x in c if x[1] > 0]

关于python - 基于Python中的某些值拆分列表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57000368/

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