python 使用json.dumps() 的indent 参数添加缩进空格数,格式化字符串后输出

格式化字符串后输出,统一缩进,可以使用json.dumps() 的indent 参数。它会使得输出和print() 函数效果类似

 

import json

json_dicts={'age': 4, 'name': 'niuniuche', 'attribute': 'toy'}
print(json.dumps(json_dicts,indent=4))          # indent=4缩进四个空格


"age": 4,
"name": "niuniuche",
"attribute": "toy"
}

上一篇:Python3中的json模块使用详解


下一篇:json.dumps 中的 ensure_ascii 参数