JSON
Ekkart Kleinod
•
- JSON sieht fast wie Python-Datenstrukturen aus
- außer
true
,false
,null
, die sind in PythonTrue
,False
,None
- außer
Hack
json_content = { "edible": False, "content": None "items": ["abc", "def"] } true, false, null = True, False, None json_content = { "edible": false, "content": null "items": ["abc", "def"] }