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!