demo_json_from_python.py:
import json # a Python object (dict): x = { "name": "John", "age": 30, "city": "New York" } # convert into JSON: y = json.dumps(x) # the result is a JSON string: print(y)
C:\Users\My Name>python demo_json_from_python.py
{"name": "John", "age": 30, "city": "New York"}