首頁 >後端開發 >Python教學 >如何在 Python 中漂亮地列印 JSON 資料?

如何在 Python 中漂亮地列印 JSON 資料?

Linda Hamilton
Linda Hamilton原創
2024-12-31 04:49:08767瀏覽

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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn