首页 >后端开发 >Python教程 >如何使用 json 模块在 Python 中解析 JSON 数据?

如何使用 json 模块在 Python 中解析 JSON 数据?

Mary-Kate Olsen
Mary-Kate Olsen原创
2024-12-17 13:19:35893浏览

How to Parse JSON Data in Python Using the `json` Module?

在 Python 中解析 JSON 数据

在 Python 中,解析 JSON 数据涉及到使用 json 模块。如果字符串中有 JSON 数据,则可以使用 json.loads 方法将其转换为 Python 字典:

import json

json_str = '{ "one": "1", "two": "2", "three": "3" }'
data = json.loads(json_str)

一旦将 JSON 数据作为字典,您就可以使用以下方法访问各个值键名如下所示:

result = data['two']
print(result)  # Output: 2

示例:

在提供的示例中,我们有一个 JSON 字符串 jsonStr 和一个输入字符串键“two”。要检索相应的值,可以使用以下代码:

import json

json_str = '{ "one": "1", "two": "2", "three": "3" }'
key = "two"
data = json.loads(json_str)
result = data[key]
print(result)  # Output: 2

以上是如何使用 json 模块在 Python 中解析 JSON 数据?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn