Python 之 Json模块使用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 之 Json模块使用相关的知识,希望对你有一定的参考价值。
Json模块作用
把python内存的数据,如字典,列表等数据,进行序列化,并写入到文件中以字符串为字节的方式保存,而下次使用的时候,可直接使用json获取文件的信息,同时也能兼容实现了各种语言之间的数据交换。
代码
#Author Kang
import json
info = {"name":"kang","age":23}
f_write = open("test.txt","w",encoding=‘utf-8‘)
data = json.dumps(info)
f_write.write(data)
f_write.close()
f_read = open(‘test.txt‘,‘r‘,encoding=‘utf-8‘)
data = json.load(f_read)
print(data["name"])
print(data[‘age‘])
结果:
kang
23
以上是关于Python 之 Json模块使用的主要内容,如果未能解决你的问题,请参考以下文章