“Python JSON Serialize Print Pretty” Réponses codées

Python JSON Serialize Print Pretty

pretty_print_json = pprint.pformat(json_data).replace("'", '"')

with open('file_name.json', 'w') as f:
    f.write(pretty_print_json)
DreamCoder

Python JSON Serialize Print Pretty

import json

def pp_json(json_thing, sort=True, indents=4):
    if type(json_thing) is str:
        print(json.dumps(json.loads(json_thing), sort_keys=sort, indent=indents))
    else:
        print(json.dumps(json_thing, sort_keys=sort, indent=indents))
    return None

pp_json(your_json_string_or_dict)
DreamCoder

Réponses similaires à “Python JSON Serialize Print Pretty”

Questions similaires à “Python JSON Serialize Print Pretty”

Plus de réponses similaires à “Python JSON Serialize Print Pretty” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code