python-small-examples

@author jackzhenguo
@desc 格式化json串
@tag
@version 
@date 2020/04/08
import json


def format_json(json_str: str):
    dic = json.loads(json_str)

    js = json.dumps(dic,
                    sort_keys=True,
                    ensure_ascii=False,
                    indent=4,
                    separators=(', ', ': '))
    return js
[上一个例子](/python-small-examples/md/200.html) [下一个例子](/python-small-examples/md/202.html)