中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

Python怎么取json中嵌套數據

小億
284
2023-08-11 22:36:51
欄目: 編程語言

要獲取嵌套在JSON中的數據,可以使用Python的json庫和字典的索引操作。

首先,使用json.loads()函數將JSON字符串解析為Python字典對象。然后,就可以使用字典的索引操作來提取嵌套在JSON中的數據。

以下是一個示例代碼,演示如何使用Python來提取嵌套在JSON中的數據:

import json
# 要解析的JSON字符串
json_str = '{"name": "John", "age": 30, "city": "New York", "education": {"degree": "Bachelor", "school": "ABC University"}}'
# 解析JSON字符串為Python字典
data = json.loads(json_str)
# 提取嵌套在JSON中的數據
name = data["name"]
age = data["age"]
city = data["city"]
degree = data["education"]["degree"]
school = data["education"]["school"]
print("Name:", name)
print("Age:", age)
print("City:", city)
print("Degree:", degree)
print("School:", school)

輸出結果:

Name: John
Age: 30
City: New York
Degree: Bachelor
School: ABC University

在上面的示例中,我們首先使用json.loads()函數將JSON字符串解析為Python字典對象。然后,我們使用字典的索引操作來提取嵌套在JSON中的數據。例如,data["name"]表示獲取字典data中鍵為"name"的值,data["education"]["degree"]表示獲取字典data中鍵為"education"的值,再獲取這個值中鍵為"degree"的值。

0
榕江县| 剑川县| 封丘县| 东莞市| 柘荣县| 社会| 鱼台县| 云浮市| 沽源县| 桓台县| 杂多县| 抚宁县| 扎鲁特旗| 张家界市| 彝良县| 西畴县| 永善县| 晋宁县| 南川市| 嘉祥县| 如东县| 怀柔区| 武山县| 海口市| 黑山县| 永平县| 新巴尔虎右旗| 廊坊市| 昭觉县| 光泽县| 体育| 台州市| 水城县| 铁岭县| 封开县| 顺义区| 三门县| 璧山县| 梁河县| 巩留县| 河北省|