发布时间:2019-08-10 09:21:06编辑:auto阅读(2572)
Python处理JSON
json.dumps
encoding:把一个Python对象编码转换成Json字符串
json.loads
decoding:把Json格式字符串解码转换成Python对象
Python encode() 函数用于将 Python 对象编码成 JSON 字符串。
data = [ { 'a' : 1, 'b' : 2, 'c' : 3, 'd' : 4, 'e' : 5 } ]
json = demjson.encode(data)
type(json)
===》 strPython 可以使用 demjson.decode() 函数解码 JSON 数据。该函数返回 Python 字段的数据类型。
json = '{"a":1,"b":2,"c":3,"d":4,"e":5}';
text = demjson.decode(json)
type(text)
===》 dict
上一篇: 利用python进行T检验
下一篇: Notes for python (1)
51569
51154
41665
38422
32909
29882
28601
23563
23494
21843
1993°
2706°
2266°
2188°
2643°
2207°
2960°
4890°
4728°
3362°