在 Python 中,json
模块用于处理 JSON(JavaScript Object Notation)数据,它提供了编码和解码 JSON 数据的功能。JSON 是一种轻量级的数据交换格式,常用于前端和后端之间的数据传输。
以下是 json
模块的一些主要功能:
1. 编码(对象转为 JSON 字符串):
使用 json.dumps()
方法将 Python 对象编码为 JSON 字符串。
import json
data = {
'name': 'John',
'age': 30,
'city': 'New York'
}
json_string = json.dumps(data)
print(json_string)
2. 解码(JSON 字符串转为对象):
使用 json.loads()
方法将 JSON 字符串解码为 Python 对象。
json_string = '{"name": "John", "age": 30, "city": "New York"}'
data = json.loads(json_string)
print(data)
3. 文件操作:
- 将 Python 对象写入 JSON 文件:
data = {
'name': 'John',
'age': 30,
'city': 'New York'
}
with open('data.json', 'w') as json_file:
json.dump(data, json_file)
- 从 JSON 文件读取数据:
with open('data.json', 'r') as json_file:
data = json.load(json_file)
print(data)
4. 参数控制:
json.dumps()
和 json.loads()
支持一些参数,例如 indent
用于指定缩进空格数,sort_keys
用于指定是否按键进行排序等。
data = {
'name': 'John',
'age': 30,
'city': 'New York'
}
json_string = json.dumps(data, indent=2, sort_keys=True)
print(json_string)
这样输出的 JSON 字符串将更具有可读性。
json
模块是处理 JSON 数据的重要工具,在 Web 开发、API 调用等场景中经常被使用。