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

JSON数据解析(python3.4)

时间:2016-10-21 16:28:14      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:com   zhang   targe   模块   get   数据解析   html   json   函数   

1、

Python中可以使用 json 模块来对 JSON 数据进行编解码,它包含了两个函数:

  • json.dumps(): 对数据进行编码。  python数据---->json数据
  • json.loads():对数据进行解码。  json数据---->python数据

2、

import json
data = {
    no:1,
    name:zhangsan,
    url: http://www.zhangsan.com,
    handsome?: True
}
json_str = json.dumps(data)        #编码
print ("python数据:")
print (data)
print ("json数据:")
print (json_str)

data2 = json.loads(json_str)    #解码
print (data2[handsome?])

 

http://www.runoob.com/python3/python3-json.html

 

JSON数据解析(python3.4)

标签:com   zhang   targe   模块   get   数据解析   html   json   函数   

原文地址:http://www.cnblogs.com/stellar/p/5984512.html

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