在 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中文網其他相關文章!