吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1198|回复: 7
收起左侧

[求助] 请教,py取嵌套字典里的数值

[复制链接]
weeee4 发表于 2020-11-23 12:43
有如下字典(jison)
[Python] 纯文本查看 复制代码
{"result":
{"face_num":1,
"face_list":[{"face_location":{"top":93,"left":275,"width":191,"height":273},"gender":"Male","age":"32"}]
},
"code":"0","message":"success"}



我想取其中的top left width height 数值,应该如何取到,谢谢

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

yzqhj 发表于 2020-11-23 12:50
[Python] 纯文本查看 复制代码
sd={"result":
{"face_num":1,
"face_list":[{"face_location":{"top":93,"left":275,"width":191,"height":273},"gender":"Male","age":"32"}]
},
"code":"0","message":"success"}
qz=sd['result']['face_list'][0]['face_location']
for i in qz:
    print(qz[i])

免费评分

参与人数 1热心值 +1 收起 理由
weeee4 + 1 热心回复!

查看全部评分

yzqhj 发表于 2020-11-23 12:53
挨着找下一级就行了,取到最后的字典,循环取到键,利用键取值
ghd19940802 发表于 2020-11-23 13:48
JSON.result.face_list[0].face_location.top
JSON.result.face_list[0].face_location.left
JSON.result.face_list[0].face_location.width
JSON.result.face_list[0].face_location.height
pixuan 发表于 2020-11-23 14:12
《Python编程:入门到实践》
kang_alone 发表于 2020-11-23 14:16
[Python] 纯文本查看 复制代码
s = {"result":
	     {"face_num": 1,
	      "face_list": [
		      {"face_location": {"top": 93, "left": 275, "width": 191, "height": 273}, "gender": "Male", "age": "32"}]
	      },
     "code": "0", "message": "success"}
print(s["result"]["face_list"][0]["face_location"]["top"])
print(s["result"]["face_list"][0]["face_location"]["left"])
print(s["result"]["face_list"][0]["face_location"]["width"])
print(s["result"]["face_list"][0]["face_location"]["height"])
hhhhpaa 发表于 2020-11-23 14:38
对key取就可以,类似于多维矩阵切片,不过这里矩阵的下标被换成了key
52loli 发表于 2020-11-23 14:38
import json
a = '''{"result":
{"face_num":1,
"face_list":[{"face_location":{"top":93,"left":275,"width":191,"height":273},"gender":"Male","age":"32"}]
},
"code":"0","message":"success"}'''
s = json.loads(a)
s['result']['face_list'][0]['face_location']['top']
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2025-1-16 10:48

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表