码迷,mamicode.com
首页 > 编程语言 > 详细

python中的 json 模块使用

时间:2016-05-13 08:49:39      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:

(1)python 中生成 json 字符串:

import json
data = dict(ret=0, msg="Welcome, Login success!")
json_str = json.dumps(data, sort_keys=True)
print json_str

(2)python 中解析 json字符串:

import json
json_str = {"msg": "Welcome, Login success!", "ret": 0}
data_dict = json.loads(json_str)
print data_dict

 

python中的 json 模块使用

标签:

原文地址:http://www.cnblogs.com/alenoscar/p/5248100.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!