Sono nuovo di Python e sto giocando con i dati JSON. Vorrei costruire dinamicamente un oggetto JSON aggiungendo un valore-chiave a un oggetto JSON esistente.
Ho provato quanto segue ma ottengo TypeError: 'str' object does not support item assignment
:
import json
json_data = json.dumps({})
json_data["key"] = "value"
print 'JSON: ', json_data