Get all values from nested dictionaries in python(从python中的嵌套字典中获取所有值)
问题描述
我有一些字典的字典,像这样:
I have some dictionaries of dictionaries, like this:
a['b']['c']['d']['answer'] = answer1
a['b']['c']['e']['answer'] = answer2
a['b']['c']['f']['answer'] = answer3
....
a['b']['c']['d']['conf'] = conf1
a['b']['c']['e']['conf'] = conf2
a['b']['c']['f']['conf'] = conf3
是否有一种快速的方法可以获取第三级 (d,e,f) 上所有元素的所有答案的值列表?
Is there a fast way to get a list of values of all answers for all elements at the third level (d,e,f)?
特别是我想知道是否有任何实现通配符的机制(例如,a['b']['c']['*']['answer'].values()代码>
Specifically I'd like to know if there's any mechanism implementing a wildcard (e.g., a['b']['c']['*']['answer'].values()
更新到目前为止,我发现的最快方法是:
update The fastest way I've found till now is:
[x['answer'] for x in a['b']['c'].values()]
推荐答案
只是为了回答这个话题,从我问题的更新状态"复制我的解决方案:
Just to give an answer to this topic, copying my solution from the "updating status" of my question:
[x['answer'] for x in a['b']['c'].values()]
希望能帮到你.
这篇关于从python中的嵌套字典中获取所有值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从python中的嵌套字典中获取所有值
基础教程推荐
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 筛选NumPy数组 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01