📜  python print dict pretty - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:20.554000             🧑  作者: Mango

代码示例1
>>> import json
>>> print json.dumps({'a':2, 'b':{'x':3, 'y':{'t1': 4, 't2':5}}},
...                  sort_keys=True, indent=4)
{
    "a": 2,
    "b": {
        "x": 3,
        "y": {
            "t1": 4,
            "t2": 5
        }
    }
}