import json

j = json.loads('{"nome": "Fulano", "idade": "23"}')

print(j['idade'])

j['idade'] = 10
print(j['idade'])