json

作者: shuff1e | 来源:发表于2018-03-04 10:57 被阅读6次
>>> 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}

相关文章

网友评论

      本文标题:json

      本文链接:https://www.haomeiwen.com/subject/wvbxfftx.html