共计 544 个字符,预计需要花费 2 分钟才能阅读完成。
在 Python 中,可以使用 json
模块来处理 JSON 数据。下面是一些常见的 json
库的使用示例:
- 将 Python 对象转换为 JSON 字符串:
import json
data = {
'name': 'Alice',
'age': 25,
'city': 'New York'
}
json_data = json.dumps(data)
print(json_data)
- 将 JSON 字符串转换为 Python 对象:
import json
json_data = '{"name":"Alice","age": 25,"city":"New York"}'
data = json.loads(json_data)
print(data)
- 将数据写入 JSON 文件:
import json
data = {
'name': 'Alice',
'age': 25,
'city': 'New York'
}
with open('data.json', 'w') as file:
json.dump(data, file)
- 从 JSON 文件中读取数据:
import json
with open('data.json', 'r') as file:
data = json.load(file)
print(data)
这些是 json
库的一些基本用法,你可以根据具体的需求进一步探索。
丸趣 TV 网 – 提供最优质的资源集合!
正文完