json模块
Posted jancyboy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了json模块相关的知识,希望对你有一定的参考价值。
dic = {"name":"boke","age":"18"} #字典
data = json.dumps(dic) #转成json序列化
with open("json_text","w") as f : #创建文件句柄
f.write(data) #写入文件中
注:data = json.dump(dic,f) #简化
with open("json_text","r") as f :
data = f.read() #读取文件
data = json.loads(data) #转成字典格式
注:data = json.load(f) #简化
以上是关于json模块的主要内容,如果未能解决你的问题,请参考以下文章
os模块 hashlib模块 random模块 logging模块 json模块