“Python écrivez à JSON avec un indent” Réponses codées

Python écrivez à JSON avec un indent

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 Imprimez jolie 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

Réponses similaires à “Python écrivez à JSON avec un indent”

Questions similaires à “Python écrivez à JSON avec un indent”

Plus de réponses similaires à “Python écrivez à JSON avec un indent” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code