首页 >后端开发 >Python教程 >如何将 JSON 字符串转换为 Python 字典?

如何将 JSON 字符串转换为 Python 字典?

DDD
DDD原创
2024-11-02 15:34:30450浏览

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