我有一个嵌套的dict,键为整数,我试图将每个元素值中的名称用作字典的键,但是我遇到了一些错误。 有人可以告诉我我的代码有什么问题,什么是实现我的目标的最佳pythonic方法?预先感谢。
dict=
{
1: {
'name': 'PLS_1-2-3-4-5-6_IPVPN_101_1',
'qos': 'ef',
'police': {
'cir': '100',
'cbs': '6400',
},
'marker': {
'use-pre-set-markings': 'false',
'cir-conform-action': 'none',
'cir-exceed-action': 'drop',
'pir-exceed-action': ''
}
},
2: {
'name': 'policer_RT_257',
'qos': 'cs7',
'police': {
'cir': '10000000',
'cbs': '16384',
},
'marker': {
'use-pre-set-markings': 'false',
'cir-conform-action': 'none',
'cir-exceed-action': 'drop',
'pir-exceed-action': ''
}
},
3: {
'name': 'PW_VPN_Test_2_PW',
'qos': 'ef',
'police': {
'cir': '10000',
'cbs': '640000',
},
'marker': {
'use-pre-set-markings': 'false',
'cir-conform-action': 'none',
'cir-exceed-action': 'drop',
'pir-exceed-action': ''
}
}
}
预期
dict2={
'PLS_1-2-3-4-5-6_IPVPN_101_1': {
'name': 'PLS_1-2-3-4-5-6_IPVPN_101_1',
'qos': 'ef',
'police': {
'cir': '100',
'cbs': '6400',
},
'marker': {
'use-pre-set-markings': 'false',
'cir-conform-action': 'none',
'cir-exceed-action': 'drop',
'pir-exceed-action': ''
}
},
'policer_RT_257': {
'name': 'policer_RT_257',
'qos': 'cs7',
'police': {
'cir': '10000000',
'cbs': '16384',
},
'marker': {
'use-pre-set-markings': 'false',
'cir-conform-action': 'none',
'cir-exceed-action': 'drop',
'pir-exceed-action': ''
}
},
'PW_VPN_Test_2_PW': {
'name': 'Tef_PW_VPN_Test_2_PW',
'qos': 'ef',
'police': {
'cir': '10000',
'cbs': '640000',
},
'marker': {
'use-pre-set-markings': 'false',
'cir-conform-action': 'none',
'cir-exceed-action': 'drop',
'pir-exceed-action': ''
}
}
}
我尝试使用键,值迭代作为新的键和值列表,然后将它们压缩为新的字典,但是出现了一些错误。
```
listOfValues = [value for (key, value) in dict.items()]
listOfKeys = [key['name'] for (key, value) in dict.items()]
dict2 = zip(listOfKeys, listOfValues)
```
错误:
listOfKeys = [key['name'] for (key, value) in dict.items()]
TypeError: 'int' object is not subscriptable
答案 0 :(得分:0)
不要那样做!您应该制作词典列表,而不要使用整数 作为键:
dictList = [
{
'name': 'PLS_1-2-3-4-5-6_IPVPN_101_1',
'qos': 'ef',
'police': {
'cir': '100',
'cbs': '6400',
},
'marker': {
'use-pre-set-markings': 'false',
'cir-conform-action': 'none',
'cir-exceed-action': 'drop',
'pir-exceed-action': ''
},
...
]
现在您可以通过 index 来访问dictList
:
dictList[0]
答案 1 :(得分:0)
dict = {v['name']: v for v in dict.values()}
尝试
答案 2 :(得分:0)
首先:不要使用dict
作为变量,因为dict
是一个函数
,请改用dict1
然后:dict
的键是完整的
尝试一下:
listOfValues = [value for (key, value) in dict1.items()]
listOfKeys = [dict1[key]['name'] for (key, value) in dict1.items()]
dict2 = dict(zip(listOfKeys, listOfValues))
dict2
输出:
{'PLS_1-2-3-4-5-6_IPVPN_101_1': {'name': 'PLS_1-2-3-4-5-6_IPVPN_101_1',
'qos': 'ef',
'police': {'cir': '100', 'cbs': '6400'},
'marker': {'use-pre-set-markings': 'false',
'cir-conform-action': 'none',
'cir-exceed-action': 'drop',
'pir-exceed-action': ''}},
'policer_RT_257': {'name': 'policer_RT_257',
'qos': 'cs7',
'police': {'cir': '10000000', 'cbs': '16384'},
'marker': {'use-pre-set-markings': 'false',
'cir-conform-action': 'none',
'cir-exceed-action': 'drop',
'pir-exceed-action': ''}},
'PW_VPN_Test_2_PW': {'name': 'PW_VPN_Test_2_PW',
'qos': 'ef',
'police': {'cir': '10000', 'cbs': '640000'},
'marker': {'use-pre-set-markings': 'false',
'cir-conform-action': 'none',
'cir-exceed-action': 'drop',
'pir-exceed-action': ''}}}