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

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

Linda Hamilton
Linda Hamilton原創
2024-12-22 22:14:11397瀏覽

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

使用 JSON 模組在 Python 中解析 JSON 資料

Python 提供了一種透過 json 模組處理 JSON 資料的便捷方法。這個模組提供將 JSON 字串解碼為 Python 資料結構的函數。

要解析 JSON 字串,請使用 json.loads() 函數:

import json

json_string = '{"one": "1", "two": "2", "three": "3"}'  # Example JSON string

data = json.loads(json_string)

這將建立一個 Python 字典JSON字串:

>>> print(data)
{'one': '1', 'two': '2', 'three': '3'}

要從解析的資料存取特定值,請使用方括號運算子([]):

two_value = data['two']
print(two_value)

輸出:

2

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

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