Comment afficher une chaîne de caractères JSON en Python avec l'indentation ?
Il existe plusieurs façons d'afficher une chaîne de caractères JSON en Python :
Avec JSON : la première solution consiste à utiliser la bibliothèque json
:
# Importe la bibliothèque json
import json
# Le JSON à afficher
str_json = '{"key1":"val1", "key2":"val2"}'
# Decode la chaîne JSON (str -> dict)
parsed = json.loads(str_json)
# Affiche le JSON indenté
print(json.dumps(parsed, indent=4))
Le code précédent affiche :
{
"key1": "val1",
"key2": "val2"
}
Pretty print : la seconde solution est d'utiliser la bibiothèque pprint
:
# Importe la bibliothèque pprint
import json
from pprint import pprint
# Le JSON à afficher
str_json = '{"key1":"val1", "key2":"val2"}'
# Décode la chaîne JSON (str -> dict)
parsed = json.loads(str_json)
# Affiche le json avec pretty print
pprint(parsed, width=1)
Le code précédent affiche :
{'key1': 'val1',
'key2': 'val2'}
Il existe plusieurs façons d'afficher une chaîne de caractères JSON en Python :
Avec JSON : la première solution consiste à utiliser la bibliothèque json
:
# Importe la bibliothèque json
import json
# Le JSON à afficher
str_json = '{"key1":"val1", "key2":"val2"}'
# Decode la chaîne JSON (str -> dict)
parsed = json.loads(str_json)
# Affiche le JSON indenté
print(json.dumps(parsed, indent=4))
Le code précédent affiche :
{
"key1": "val1",
"key2": "val2"
}
Pretty print : la seconde solution est d'utiliser la bibiothèque pprint
:
# Importe la bibliothèque pprint
import json
from pprint import pprint
# Le JSON à afficher
str_json = '{"key1":"val1", "key2":"val2"}'
# Décode la chaîne JSON (str -> dict)
parsed = json.loads(str_json)
# Affiche le json avec pretty print
pprint(parsed, width=1)
Le code précédent affiche :
{'key1': 'val1',
'key2': 'val2'}
Il existe plusieurs façons d'afficher une chaîne de caractères JSON en Python :
Avec JSON : la première solution consiste à utiliser la bibliothèque json
:
# Importe la bibliothèque json
import json
# Le JSON à afficher
str_json = '{"key1":"val1", "key2":"val2"}'
# Decode la chaîne JSON (str -> dict)
parsed = json.loads(str_json)
# Affiche le JSON indenté
print(json.dumps(parsed, indent=4))
Le code précédent affiche :
{
"key1": "val1",
"key2": "val2"
}
Pretty print : la seconde solution est d'utiliser la bibiothèque pprint
:
# Importe la bibliothèque pprint
import json
from pprint import pprint
# Le JSON à afficher
str_json = '{"key1":"val1", "key2":"val2"}'
# Décode la chaîne JSON (str -> dict)
parsed = json.loads(str_json)
# Affiche le json avec pretty print
pprint(parsed, width=1)
Le code précédent affiche :
{'key1': 'val1',
'key2': 'val2'}
# | ID | Query | URL | Count |
---|