码迷,mamicode.com
首页 > 编程语言 > 详细

【Python】格式化输出json

时间:2019-11-12 11:20:37      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:格式化输出   str   indent   div   参数   body   target   数据格式   www   

参考文档:

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

标签:格式化输出   str   indent   div   参数   body   target   数据格式   www   

原文地址:https://www.cnblogs.com/kaerxifa/p/11840098.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!