共计 455 个字符,预计需要花费 2 分钟才能阅读完成。
在 Python 中,可以使用 json
模块来解析 JSON 字符串。可以通过将 JSON 字符串转换为字典或列表的形式,然后使用索引或键名来获取 JSON 中的特定值。
以下是一个示例代码,展示了如何获取 JSON 中的某个值:
import json
# JSON 字符串
json_str = '{"name":"John","age": 30,"city":"New York"}'
# 将 JSON 字符串解析为字典
data = json.loads(json_str)
# 获取特定键的值
name = data['name']
age = data['age']
city = data['city']
# 打印结果
print(f'Name: {name}')
print(f'Age: {age}')
print(f'City: {city}')
输出结果:
Name: John
Age: 30
City: New York
在上述示例中,首先将 JSON 字符串 json_str
使用 json.loads()
函数解析为字典形式的数据。然后,可以通过键名获取字典中的特定值。
丸趣 TV 网 – 提供最优质的资源集合!
正文完