python列表嵌套字典取值

python列表嵌套字典取值,第1张

文章目录
  • 一、实例
  • 二、解决思路
  • 三、代码示例

一、实例

将以下列表的backup_unit_id全部提取出来
示例:

dbs = [{
		"backup_unit_id": 163,
		"data_node_id": 2,
		"attribute": {
			"convertor_id": 4,
			"channel_num": 2,
			"sga": "90G"
		}
	},
	{
		"backup_unit_id": 164,
		"data_node_id": 3,
		"attribute": {
			"convertor_id": 9,
			"channel_num": 2,
			"sga": "90G"
		}
	}
]
二、解决思路

1、确定需要取值的对象是什么类型(列表还是字典)
2、此处确定类型为列表,列表下嵌套了字典
3、所以取值的时候要用到列表取值,字典取值
4、先把列表的值提取出来,也就是通过for…in…进行遍历
5、列表的值提取返回结果为字典类型,所以进一步取值时,通过字典的key获取,例:i[“key”]

三、代码示例

代码如下(示例):

dbs = [{
		"backup_unit_id": 163,
		"data_node_id": 2,
		"attribute": {
			"convertor_id": 4,
			"channel_num": 2,
			"sga": "90G"
		}
	},
	{
		"backup_unit_id": 164,
		"data_node_id": 3,
		"attribute": {
			"convertor_id": 9,
			"channel_num": 2,
			"sga": "90G"
		}
	}
]
for i in dbs:
    # print(i)
    print(i["backup_unit_id"])
 

返回结果(示例):

163
164

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/869565.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-13
下一篇 2022-05-13

发表评论

登录后才能评论

评论列表(0条)

保存