gpt4 book ai didi

python - 从列表中找到具有 key 对 'isGeo' :True 的字典

转载 作者:太空宇宙 更新时间:2023-11-04 00:09:27 26 4
gpt4 key购买 nike

如何从列表中查找具有键对 'isGeo':True 的字典

dimensions = [{'key': 2600330, 'id': 'location', 'name': 'Location', 'isGeo': True, 'geoType': 'region'}, {'key': 2600340, 'id': 'subject', 'name': 'Subject', 'isGeo': False, 'geoType': None}, {'key': 2600350, 'id': 'measure', 'name': 'Measure', 'isGeo': False, 'geoType': None}]

我想要下面的结果:

{'key': 2600330, 'id': 'location', 'name': 'Location', 'isGeo': True, 'geoType': 'region'}

最佳答案

使用nextgenerator expression :

res = next((d for d in dimensions if d['isGeo']), None)

{'key': 2600330, 'id': 'location', 'name': 'Location', 'isGeo': True, 'geoType': 'region'}

自从您标记了 , 你也可以使用 Pandas:

import pandas as pd

df = pd.DataFrame(dimensions)
res = df.loc[df['isGeo']].iloc[0].to_dict()

上述解决方案假设您只需要第一个 字典满足您的条件。如果您想要字典列表,请使用:

res = [d for d in dimensions if d['isGeo']]
res = df.loc[df['isGeo']].to_dict('records')

关于python - 从列表中找到具有 key 对 'isGeo' :True 的字典,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53021240/

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