如何从 Python 函数中返回一个 json 对象?
我们使用给定的 Python 字典,通过以下方式从 Python 函数返回一个 json 对象。
示例
import json a = {'name':'Sarah', 'age': 24, 'isEmployed': True } # a python dictionary def retjson(): python2json = json.dumps(a) print python2json retjson()
输出
{"age": 24, "isEmployed": true, "name": "Sarah"}
广告