Answers for "python parse single quote json"

0

python parse single quote json

import json

# mixing single and double quotes
data = {'jsonKey': 'jsonValue',"title": "hello world"}

# get string with all double quotes
json_string = json.dumps(data)
Posted by: Guest on July-21-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language