- json.dumps 将 Python 对象编码成 JSON 字符串
- json.loads 将已编码的 JSON 字符串解码为 Python 对象
- 还有更多高级的用法:http://www.runoob.com/python/python-json.html
>>> foo={"a":1,"b":2}
>>> type(foo)
<type 'dict'>
>>> foo
{'a': 1, 'b': 2}
>>> import json
>>> bar=json.dumps(foo)
>>> type(bar)
<type 'str'>
>>> bar
'{"a": 1, "b": 2}'
>>> foo=json.loads(bar)
>>> type(foo)
<type 'dict'>
>>> foo
{u'a': 1, u'b': 2}