首頁 > 後端開發 > 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
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板