Python处理JSON

Posted

tags:

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

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)
===》 str
Python 可以使用 demjson.decode() 函数解码 JSON 数据。该函数返回 Python 字段的数据类型。
json = ‘{"a":1,"b":2,"c":3,"d":4,"e":5}‘;
text = demjson.decode(json)
type(text)
===》 dict

本文出自 “大荒芜经” 博客,请务必保留此出处http://2892931976.blog.51cto.com/5396534/1789438

以上是关于Python处理JSON的主要内容,如果未能解决你的问题,请参考以下文章

漂亮的打印 JSON python

python与json的数据转换

使用 Json Python 格式化 Websocket 数据

使用 json python 存储频道 ID 和公会 ID

InstagramAPI - 如何将 JSON Python 数据解析为 Pandas DataFrame(iPython、Jupyter Notebook)

如何将有效json中的字符串json转换为有效的json python