List of dictionaries, in a dictionary - in Python(字典列表,在字典中 - 在 Python 中)
问题描述
我有一个案例,我需要以编程方式构建以下结构(是的,我知道 .setdefault 和 defaultdict,但我无法得到我想要的)
I have a case where I need to construct following structure programmatically (yes I am aware of .setdefault and defaultdict but I can not get what I want)
我基本上需要一个字典,在循环中创建一个字典.一开始结构完全空白.
I basically need a dictionary, with a dictionary of dictionaries created within the loop. At the beginning the structure is completely blank.
结构示例(请注意,我想在代码中创建一个具有此结构的数组!)
structure sample (please note, I want to create an array that has this structure in the code!)
RULE = {
'hard_failure': {
4514 : {
'f_expr' = 'ABC',
'c_expr' = 'XF0',
}
}
}
需要创建这个的伪代码:
pseudo code that needs to create this:
...
self.rules = {}
for row in rows:
a = 'hard_failure'
b = row[0] # 4514
c = row[1] # ABC
d = row[2] # XF0
# Universe collapse right after
self.rules = ????
...
上面的代码显然不起作用,因为我不知道该怎么做!
The code above is obviously not working since I dont know how to do it!
推荐答案
例如,您发布的不是有效的 Python 代码,我只能想象您正在尝试执行以下操作:
Example, that you've posted is not a valid python code, I could only imagine that you're trying to do something like this:
self.rules[a] = [{b:{'f_expr': c, 'c_expr': d}}]
这种方式self.rules
是一个字典的字典列表.我敢打赌有更明智的方法来做到这一点.
this way self.rules
is a dictionary of a list of a dictionary of a dictionary. I bet there is more sane way to do this.
这篇关于字典列表,在字典中 - 在 Python 中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:字典列表,在字典中 - 在 Python 中
基础教程推荐
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 筛选NumPy数组 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01