“Pretty Json Python” Code-Antworten

Python schreibt an JSON mit Einzug

import json

# alphabetic dictionary
json_data = {hex(k): chr(k) for k in range(ord('a'), ord('z') + 1)}
# to file
with open("my_json.json", "w") as file:
    json.dump(json_data, file, indent=4, sort_keys=True)
jdam

Python Print hübsch JSON


import json

json_data = '[{"ID":10,"Name":"Pankaj","Role":"CEO"},' \
            '{"ID":20,"Name":"David Lee","Role":"Editor"}]'

json_object = json.loads(json_data)

json_formatted_str = json.dumps(json_object, indent=2)

print(json_formatted_str)
Wide-eyed Wren

response.json führt zu hübschem Datenpython

import requests
import json
r = requests.get('http://server.com/api/2/....')
pretty_json = json.loads(r.text)
print (json.dumps(pretty_json, indent=2))
Faithful Frog

Pretty Json Python

print(json.dumps(dict, indent=4))
Yucky Yacare

Ähnliche Antworten wie “Pretty Json Python”

Fragen ähnlich wie “Pretty Json Python”

Weitere verwandte Antworten zu “Pretty Json Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen