在Python 中,json 模块提供了用于编码和解码 JSON 数据的功能。JSON(JavaScript Object Notation)是一种轻量级的数据交换格式,常用于前后端数据传输和存储。
解析 JSON 数据
使用 json 模块可以将 JSON 格式的字符串转换为 Python 对象,或者将 Python 对象转换为 JSON 格式的字符串。以下是一个解析 JSON 数据的示例:
import json
# JSON 格式的字符串
json_str = '{"name": "John", "age": 30, "city": "New York"}'
# 将 JSON 格式的字符串转换为 Python 字典
data = json.loads(json_str)
print(data)
# 输出: {'name': 'John', 'age': 30, 'city': 'New York'}
生成 JSON 数据
将 Python 对象转换为 JSON 格式的字符串也非常简单:
import json
# Python 字典
data = {'name': 'John', 'age': 30, 'city': 'New York'}
# 将 Python 字典转换为 JSON 格式的字符串
json_str = json.dumps(data)
print(json_str)
# 输出: {"name": "John", "age": 30, "city": "New York"}
json 模块还提供了其他函数和选项,可以更灵活地处理 JSON 数据。例如,处理日期格式、自定义编码和解码规则等。
网友评论