首頁 >後端開發 >Python教學 >如何使用 json 模組在 Python 中解析 JSON 資料?

如何使用 json 模組在 Python 中解析 JSON 資料?

Mary-Kate Olsen
Mary-Kate Olsen原創
2024-12-17 13:19:35883瀏覽

How to Parse JSON Data in Python Using the `json` Module?

在 Python 中解析 JSON 資料

在 Python 中,解析 JSON 資料涉及使用 json 模組。如果字串中有 JSON 數據,則可以使用 json.loads 方法將其轉換為 Python 字典:

import json

json_str = '{ "one": "1", "two": "2", "three": "3" }'
data = json.loads(json_str)

一旦將 JSON資料作為字典,您就可以使用以下方法存取各個值鍵名如下所示:

result = data['two']
print(result)  # Output: 2

範例:

在提供的範例中,我們有一個JSON 字串jsonStr 和一個輸入字串鍵“two”。要檢索對應的值,可以使用以下程式碼:

import json

json_str = '{ "one": "1", "two": "2", "three": "3" }'
key = "two"
data = json.loads(json_str)
result = data[key]
print(result)  # Output: 2

以上是如何使用 json 模組在 Python 中解析 JSON 資料?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn