如何将 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中文网其他相关文章!