json 示例

Posted 986428528

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了json 示例相关的知识,希望对你有一定的参考价值。

import json
dic={name:wesley,age:12}

res=json.dumps(dic)        #序列化dict
print(res)
print(json.loads(res))   #反序列化json数据

fp=open(pjs.txt,w)   #‘w‘
json.dump(dic,fp)           #序列化dict,并f.write()到文件‘pjs.txt‘
fp.close()

fp=open(pjs.txt,r)  #read
res=json.load(fp)   #f.read(),再反序列化
print(res)
fp.close()

 

以上是关于json 示例的主要内容,如果未能解决你的问题,请参考以下文章

Sphinx - 在代码块片段中使用省略号 (...)

json 个人的vscode的代码片段

实用代码片段将json数据绑定到html元素 (转)

json 可视代码工作室Angular with Firebase片段

需要示例代码片段帮助

vs code 用户代码片段 html.json