亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

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
定州市| 霍林郭勒市| 金堂县| 资溪县| 曲水县| 乌什县| 峨眉山市| 防城港市| 遂溪县| 廉江市| 台湾省| 保靖县| 敦煌市| 蚌埠市| 湘潭县| 出国| 上杭县| 云阳县| 前郭尔| 灯塔市| 习水县| 河西区| 隆化县| 莱阳市| 利津县| 灵宝市| 金寨县| 高安市| 岳西县| 新乐市| 台湾省| 德庆县| 忻州市| 色达县| 祁门县| 科技| 南乐县| 黄大仙区| 秦安县| 泗洪县| 富宁县|