python nesting dictionary: OrderedDict from collections(python嵌套字典:集合中的OrderedDict)
问题描述
如何嵌套 OrderedDict?
how to nest a OrderedDict?
我试过:
table=collections.OrderedDict()
table['E']['a']='abc'
但这显示错误.
我也试过:
table=collections.OrderedDict(OrderedDict())
table['E']['a']='abc'
这也显示错误.
我试过:
table=collections.OrderedDict()
table['E']=collections.OrderedDict()
table['E']['a']='abc'
这很好用.
在我的编码中,我必须这样使用:
in my coding i had to use like this:
table=collections.OrderedDict()
for lhs in left:
table[lhs]=collections.OrderedDict()
for val in terminal:
table[lhs][val]=0
效果很好.但是有没有其他方法.当我读到 python 时会自动管理它的数据结构.
which works fine. but is there any other method. as i read python manages its data structure automatically.
无论如何都可以声明一个字典以及它的嵌套数量以及它在一行中嵌套的数据结构是什么.
is there anyway to declare a dictionary along with how much nesting it'll be and what will be the data-structures of its nests in one line.
使用一个额外的循环来声明一个字典感觉就像我在 python 中遗漏了一些东西.
using an extra loop just to declare a dictionary feels like i'm missing something in python.
推荐答案
如果你真的想在一行中完成,那么这行得通
If you really want to do it in one line, then this would work
table = collections.OrderedDict([(lhs, collections.OrderedDict(zip(terminal, [0] * len(terminal)))) for lhs in left])
你最好(特别是如果终端有很多成员)这样做
You would be best off (especially if terminal has a lot of members) doing
zipped = zip(terminal, [0] * len(terminal))
table = collections.OrderedDict([(lhs, collections.OrderedDict(zipped)) for lhs in left])
这篇关于python嵌套字典:集合中的OrderedDict的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:python嵌套字典:集合中的OrderedDict
基础教程推荐
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 筛选NumPy数组 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01