python学习-49 json模块

Posted liujinjing521

tags:

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

json模块

 

--------将任何类型都转换为json字符串   

方法dumps

import json
dic="name":"abc"
data = json.dumps(dic)
print(type(data),data)

运行结果:

<class str> "name": "abc"

Process finished with exit code 0

 

 

----对文件的操作

方法loads

import json
f_read = open("a","r")
data = json.loads(f_read.read())
print(data["name"])

运行结果:

abc

Process finished with exit code 0

 

以上是关于python学习-49 json模块的主要内容,如果未能解决你的问题,请参考以下文章

python接口测试之json模块的使用

python序列化

Python学习—json模块

python标准库模块四Json模块和Pickle模块学习

Python基础之类与模块化

python学习第四十八天json模块与pickle模块差异