Heim >Backend-Entwicklung >Python-Tutorial >Wie kann ich JSON-Daten in Python hübsch drucken?

Wie kann ich JSON-Daten in Python hübsch drucken?

Linda Hamilton
Linda HamiltonOriginal
2024-12-31 04:49:08768Durchsuche

How Can I Pretty Print JSON Data in Python?

Pretty-Druck von JSON in Python

Pretty-Druck einer JSON-Datei verbessert deren Lesbarkeit, indem der Inhalt für menschliche Leser eingerückt und formatiert wird. In Python kann dies mit den Funktionen json.dump() oder json.dumps() erreicht werden.

Mit json.dump() und json.loads()

So drucken Sie eine Zeichenfolge mit JSON-Daten hübsch aus:

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))

Verwenden Sie json.load() und json.dumps() mit a Datei:

# 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))

Das obige ist der detaillierte Inhalt vonWie kann ich JSON-Daten in Python hübsch drucken?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn