JSON13

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


在j son 的编解码过程中,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

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

 

JSONPython
object dict
array list
string str
number (int) int
number (real) float
true True
false False
null None

posted @ 2021-04-22 21:27  大雄的脑袋  阅读(31)  评论(0编辑  收藏  举报