首頁  >  文章  >  後端開發  >  如何將 JSON 字串轉換為 Python 字典?

如何將 JSON 字串轉換為 Python 字典?

DDD
DDD原創
2024-11-02 15:34:30357瀏覽

How to Convert a JSON String into a Python Dictionary?

如何將JSON 字串轉換為Python 字典

JSON(JavaScript 物件表示法)是一種流行的資料格式,通常用於表示複雜的資料結構。在 Python 中,您可以使用 json 模組來處理 JSON 資料。

一個常見的任務是將 JSON 字串轉換為 Python 字典。這允許您以鍵值對的形式存取 JSON 字串中的資料。

# Define a JSON string
json_str = '{"glossary": {"title": "example glossary"}}'

# Convert the JSON string into a dictionary using json.loads()
data_dict = json.loads(json_str)

# Access the title of the glossary
print(data_dict["glossary"]["title"])

透過使用 json.loads() 函數,您可以輕鬆地將任何有效的 JSON 字串轉換為 Python 字典。這使您能夠以更結構化和方便的方式處理資料。

以上是如何將 JSON 字串轉換為 Python 字典?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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