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