import json
data={
"no":1,
"name":"Runoob",
"url":"http://www.runoob.com"
}
json_str=json.dumps(data) # json.dumps() 函数对数据进行编码,将其转换成为json格式的数据
print("python 原始数据:",repr(data))
print("python json 数据:",json_str)
python_data=json.loads(json_str) # json.loads() 函数就是讲json格式的数据解码转换成为python对应格式的数据
print(python_data)
输出对应的结果:
python 原始数据: {‘no‘: 1, ‘name‘: ‘Runoob‘, ‘url‘: ‘http://www.runoob.com‘}
python json 数据: {"no": 1, "name": "Runoob", "url": "http://www.runoob.com"}
{‘no‘: 1, ‘name‘: ‘Runoob‘, ‘url‘: ‘http://www.runoob.com‘}
# 这个是 讲格式化的数据写入文件之中和读取文件之中的数据
f=open("data.txt","w",encoding="utf-8")
f.write(json.dumps(data))
f.close()
f1=open("data.txt","r",encoding="utf-8")
f1=f1.read()
json_str1=json.loads(f1)
print("-----")
print(json_str1)