Python中JSON类型与Python类型的相互转换——json.loads()与json.dumps()的区别

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

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

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

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

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

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

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

[1] https://www.runoob.com/python3/python3-json.html

你可能感兴趣的:(python,python,json)