如何將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 字典。這使您能夠以更結構化和方便的方式處理資料。
免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。
Copyright© 2022 湘ICP备2022001581号-3