首页 > 后端开发 > Python教程 > 如何在 Python 中漂亮地打印 JSON 数据?

如何在 Python 中漂亮地打印 JSON 数据?

Linda Hamilton
发布: 2024-12-31 04:49:08
原创
757 人浏览过

How Can I Pretty Print JSON Data in Python?

在 Python 中漂亮打印 JSON

漂亮打印 JSON 文件通过为人类读者缩进和格式化其内容来增强其可读性。在 Python 中,可以使用 json.dump() 或 json.dumps() 函数来实现。

使用 json.dump() 和 json.loads()

要漂亮地打印包含 JSON 数据的字符串:

import json

# JSON string
your_json = '["foo", {"bar": ["baz", null, 1.0, 2]}]'

# Parse the JSON string
parsed = json.loads(your_json)

# Pretty print the JSON object with 4 spaces of indentation
print(json.dumps(parsed, indent=4))
登录后复制

使用 json.load() 和json.dumps() 与文件:

# Open a file containing JSON data
with open('filename.txt', 'r') as handle:
    # Parse the JSON file
    parsed = json.load(handle)

# Pretty print the JSON object with 2 spaces of indentation
print(json.dumps(parsed, indent=2))
登录后复制

以上是如何在 Python 中漂亮地打印 JSON 数据?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板