i'm receiving a string in json format. It is str format, like this:
'{"name":"Jason", "age":"10"}'
I want to transform it in a "normal" string, exactly like this:
Jason 10
You can use the json module to do this:
import json
data = json.loads(json_str)
print(data['name'], data['age'])