标签:com zhang targe 模块 get 数据解析 html json 函数
1、
Python中可以使用 json 模块来对 JSON 数据进行编解码,它包含了两个函数:
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
标签:com zhang targe 模块 get 数据解析 html json 函数
原文地址:http://www.cnblogs.com/stellar/p/5984512.html