python3_json模块详解

Posted ranxf

tags:

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

Python3 中可以使用 json 模块来对 JSON 数据进行编解码,它包含了两个函数:

  • json.dumps(): 对数据进行编码。
  • json.loads(): 对数据进行解码。

在json的编解码过程中,python 的原始类型与json类型会相互转换,具体的转化对照如下:

Python 编码为 JSON 类型转换对应表:

pythonJSON
dict object
list, tuple array
str string
int, float, int- & float-derived Enums number
True true
False false
None null

以上是关于python3_json模块详解的主要内容,如果未能解决你的问题,请参考以下文章

python3 常用模块详解

Python3 -- OS模块详解

python3——Logging模块详解

Python3.5 queue模块详解

Python3 cookiejar模块详解

python3_pickle模块详解