[PYTHON] json

import json
j = {
    "employee":
        [
            {"id": 111, "name": "Mike"},
            {"id": 222, "name": "Nancy"}
        ]
}

print(j)
print("###########")

#Beachten Sie, dass s beim Lesen und Schreiben in Python hinzugefügt wird
print(json.dumps(j))
a = json.dumps(j)
print('@@@@@@@@@@')
print(json.loads(a))

#Nein s beim Lesen oder Schreiben von Dateien
with open('test.json', 'w') as f:
    json.dump(j, f)
print('###########')
with open('test.json', 'r') as f:
    print(json.load(f))

Ausgabe:

{'employee': [{'id': 111, 'name': 'Mike'}, {'id': 222, 'name': 'Nancy'}]}
###########
{"employee": [{"id": 111, "name": "Mike"}, {"id": 222, "name": "Nancy"}]}
@@@@@@@@@@
{'employee': [{'id': 111, 'name': 'Mike'}, {'id': 222, 'name': 'Nancy'}]}
###########
{'employee': [{'id': 111, 'name': 'Mike'}, {'id': 222, 'name': 'Nancy'}]}

Recommended Posts

json
json
JSON-Formatierung
Python #JSON
Klasse zum Konvertieren von JSON
Umgang mit Json in Python
json parsing mit gdb
Wie man JSON liest
Was ist JSON? .. [Hinweis]
Gibt json mit Pyramid zurück
Konvertieren Sie json in Excel