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