Python 格式化 JSON
格式化结果
上面的例子打印了一个 JSON 字符串,但它不容易阅读,没有缩进和换行符。
The json.dumps()
方法有参数可以使结果更容易阅读。
您还可以定义分隔符,默认值为 (", ", ": "), 这意味着使用逗号和空格分隔每个对象,使用冒号和空格分隔键和值。
上面的例子打印了一个 JSON 字符串,但它不容易阅读,没有缩进和换行符。
The json.dumps()
方法有参数可以使结果更容易阅读。
您还可以定义分隔符,默认值为 (", ", ": "), 这意味着使用逗号和空格分隔每个对象,使用冒号和空格分隔键和值。
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]