Python基础 之 Python3 JSON 数据解析 2
Python3 JSON 数据解析
JSON (JavaScript Object Notation) 是一种轻量级的数据交换格式。
Python3 中可以使用 json 模块来对 JSON 数据进行编解码,它包含了两个函数:
json.dumps(): 对数据进行编码。
json.loads(): 对数据进行解码。
在 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
json.dumps 与 json.loads 实例
使用 json.dump() 和 json.load() 来编码和解码JSON数据。例如:
实例(Python 3.0+)
写入 JSON 数据
with open('data.json', 'w') as f:
json.dump(data, f)
读取数据
with open('data.json', 'r') as f:
data = json.load(f)