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

Python中json的应用(转)

时间:2016-05-13 20:48:52      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:

python中的 json 模块使用

注:测试环境

OS:Ubuntu 16.04 LTS
Python:Python 2.7.11+


(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/madsnotes/p/5490941.html

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