gpt4 book ai didi

coding-style - 从复杂的字典中收集特定数据的pythonic方式

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

我需要根据点符号键名从复杂的字典中收集一些数据

例如

样本数据

data = {
'name': {'last': 'smith', 'first': 'bob'},
'address':{'city': 'NY', 'state': 'NY'},
'contact':{'phone':{'self':'1234', 'home':'222'}},
'age':38,
'other':'etc'
}

keys = ['contact.phone.self', 'name.last', 'age']

我的逻辑

result = []
for rev_key in rev_keys:
current = data.copy()
rev_key = rev_key.split('.')
while rev_key:
value = rev_key.pop(0)
current = current[value]
result.append(current)

提前致谢!

最佳答案

[reduce(dict.get, key.split("."), data) for key in keys]

关于coding-style - 从复杂的字典中收集特定数据的pythonic方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4095386/

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