Python格式化输出json
Posted wangju003
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python格式化输出json相关的知识,希望对你有一定的参考价值。
参考文档:
Python JSON
JSON 函数
使用 JSON 函数需要导入 json 库:import json。
函数 | 描述 |
---|---|
json.dumps | 将 Python 对象编码成 JSON 字符串 |
json.loads | 将已编码的 JSON 字符串解码为 Python 对象 |
json.dumps
json.dumps 用于将 Python 对象编码成 JSON 字符串。
实例
以下实例将数组编码为 JSON 格式数据:
#!/usr/bin/python
import json
data = [ { ‘a‘ : 1, ‘b‘ : 2, ‘c‘ : 3, ‘d‘ : 4, ‘e‘ : 5 } ]
json = json.dumps(data)
print json
以上代码执行结果为:
[{"a": 1, "c": 3, "b": 2, "e": 5, "d": 4}]
使用参数让 JSON 数据格式化输出:
>>> import json
>>> print json.dumps({‘a‘: ‘Runoob‘, ‘b‘: 7}, sort_keys=True, indent=4, separators=(‘,‘, ‘: ‘))
{
"a": "Runoob",
"b": 7
}
以上是关于Python格式化输出json的主要内容,如果未能解决你的问题,请参考以下文章
python json.dumps()函数输出json格式,使用ensure_ascii参数对中文输入的支持