0

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

1 Answer 1

1

You can use the json module to do this:

import json

data = json.loads(json_str)
print(data['name'], data['age'])
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.