在编程中,常常会将数据转换为 JSON
格式和 xml
格式两种,今天我们就来讲讲Python编程中,如何将数据转换为 JSON
格式。
在Python编程中,json 模块
提供了一种很简单的方式来编码和解码
JSON 数据。 其中两个主要的函数是 json.dumps()
和 json.loads() , 要比其它序列化函数库如pickle的接口少得多。 下面演示 Python 数据结构和 JSON 转换的相关操作:
(1)将数据结构转换为JSON
import json
data = {
'name' : 'ACME',
'shares' : 100,
'price' : 542.23
}
json_str = json.dumps(data)
(2)将JSON编码字符串还原为Python数据结构
data = json.loads(json_str)
(3)如果你要处理的是文件而不是字符串,你可以使用 json.dump()
和 json.load() 来编码和解码 JSON 数据。例如:
# Writing JSON data
with open('data.json', 'w') as f:
json.dump(data, f)
# Reading data back
with open('data.json', 'r') as f:
data = json.load(f)