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