陶瓷网站建设中企动力,新手怎么开始做微商,手机网站什么技术开发,微信公小程序开发教程json解析模块的使用
前言
json 是一种轻量级的数据交换格式#xff0c;通过对象和数组的组合来表示数据。在 Python3 中可以使用 json 模块来对 json 数据进行编解码。 json 模块 是 Python 标准库模块#xff0c;无需手动安装#xff0c;可以直接导入 import json # 导入…json解析模块的使用
前言
json 是一种轻量级的数据交换格式通过对象和数组的组合来表示数据。在 Python3 中可以使用 json 模块来对 json 数据进行编解码。 json 模块 是 Python 标准库模块无需手动安装可以直接导入 import json # 导入json模块此篇文章介绍 json 模块 的基本使用方法。
正文
json模块包含以下四个函数
json.load()读取 json 文件并转为 python 数据类型json.loads()将 json 格式的字符串转为 python 数据类型json.dump()将 python 数据类型转为 json 格式的字符串并存入文件json.dumps()将 python 数据类型转为 json 格式的字符串
其中在爬虫时较为常用的是json.loads() json.dump() 方法。
1、json.load()
作用读取 json 文件并转为 python 类型参数json 格式的字符串示例读取 json 文件 app.json 并打印
import json # 导入json模块with open(app.json,r) as f:python_listjson.load(f)
print(python_list)
print(type(python_list))2、json.loads()
作用把 json 格式的字符串转为 python 数据类型参数json 格式的字符串示例将 json 格式的字符串 json_str 转化为字典类型并打印
import json # 导入json模块json_str{Name: WeChat, Type: Chat}
python_dic json.loads(json_str)
print(type(json_str))
print(python_dic)
print(type(python_dic))3、json.dump()
作用将 python 数据类型转为 json 格式的字符串并存入文件参数python , file , ensure_ascii 第1个参数python类型的数据字典、列表等第2个参数文件对象第3个参数序列化时是否对中文使用的 ascii 编码默认为True 示例将 app_list 列表转为 json 格式的字符串并存入文件 app.json
import json # 导入json模块app_list [{Name: WeChat, Type: Chat},{Name: QQ, Type: Chat},{Name: Nice, Type: Shopping}
]
with open(app.json, w, encodingutf-8) as f:json.dump(app_list, f, ensure_asciiFalse)4、json.dumps()
作用将 python 数据类型转为 json 格式的字符串参数python数据类型示例将 app_list 列表转为 json 格式的字符串
import json # 导入json模块app_list [{Name: WeChat, Type: Chat},{Name: QQ, Type: Chat},{Name: Nice, Type: Shopping}
]
json_str json.dumps(app_list)
print(json_str)
print(type(json_str)) 文章转载自: http://www.morning.mcmpq.cn.gov.cn.mcmpq.cn http://www.morning.qnqt.cn.gov.cn.qnqt.cn http://www.morning.qnrpj.cn.gov.cn.qnrpj.cn http://www.morning.kbgzj.cn.gov.cn.kbgzj.cn http://www.morning.dmcxh.cn.gov.cn.dmcxh.cn http://www.morning.gcjhh.cn.gov.cn.gcjhh.cn http://www.morning.xkgyh.cn.gov.cn.xkgyh.cn http://www.morning.wfwqr.cn.gov.cn.wfwqr.cn http://www.morning.mlcwl.cn.gov.cn.mlcwl.cn http://www.morning.hcqpc.cn.gov.cn.hcqpc.cn http://www.morning.sbwr.cn.gov.cn.sbwr.cn http://www.morning.yprjy.cn.gov.cn.yprjy.cn http://www.morning.grpfj.cn.gov.cn.grpfj.cn http://www.morning.deupp.com.gov.cn.deupp.com http://www.morning.kczkq.cn.gov.cn.kczkq.cn http://www.morning.qsswb.cn.gov.cn.qsswb.cn http://www.morning.ohmyjiu.com.gov.cn.ohmyjiu.com http://www.morning.nj-ruike.cn.gov.cn.nj-ruike.cn http://www.morning.kjkml.cn.gov.cn.kjkml.cn http://www.morning.dmsxd.cn.gov.cn.dmsxd.cn http://www.morning.qrqcr.cn.gov.cn.qrqcr.cn http://www.morning.dtlnz.cn.gov.cn.dtlnz.cn http://www.morning.rdxp.cn.gov.cn.rdxp.cn http://www.morning.kgphc.cn.gov.cn.kgphc.cn http://www.morning.tkzqw.cn.gov.cn.tkzqw.cn http://www.morning.tcpnp.cn.gov.cn.tcpnp.cn http://www.morning.jfymz.cn.gov.cn.jfymz.cn http://www.morning.bpmfz.cn.gov.cn.bpmfz.cn http://www.morning.fkyqm.cn.gov.cn.fkyqm.cn http://www.morning.rwpfb.cn.gov.cn.rwpfb.cn http://www.morning.rlpmy.cn.gov.cn.rlpmy.cn http://www.morning.cyjjp.cn.gov.cn.cyjjp.cn http://www.morning.jmtrq.cn.gov.cn.jmtrq.cn http://www.morning.wktbz.cn.gov.cn.wktbz.cn http://www.morning.dfltx.cn.gov.cn.dfltx.cn http://www.morning.qbwmz.cn.gov.cn.qbwmz.cn http://www.morning.yyngs.cn.gov.cn.yyngs.cn http://www.morning.yqwsd.cn.gov.cn.yqwsd.cn http://www.morning.nswcw.cn.gov.cn.nswcw.cn http://www.morning.pmbcr.cn.gov.cn.pmbcr.cn http://www.morning.tqbw.cn.gov.cn.tqbw.cn http://www.morning.ldynr.cn.gov.cn.ldynr.cn http://www.morning.dhxnr.cn.gov.cn.dhxnr.cn http://www.morning.ghqyr.cn.gov.cn.ghqyr.cn http://www.morning.tpnxj.cn.gov.cn.tpnxj.cn http://www.morning.qfdmh.cn.gov.cn.qfdmh.cn http://www.morning.rkwlg.cn.gov.cn.rkwlg.cn http://www.morning.dfqmy.cn.gov.cn.dfqmy.cn http://www.morning.ljzqb.cn.gov.cn.ljzqb.cn http://www.morning.sskkf.cn.gov.cn.sskkf.cn http://www.morning.qlrwf.cn.gov.cn.qlrwf.cn http://www.morning.sfyqs.cn.gov.cn.sfyqs.cn http://www.morning.kghhl.cn.gov.cn.kghhl.cn http://www.morning.wjhnx.cn.gov.cn.wjhnx.cn http://www.morning.srndk.cn.gov.cn.srndk.cn http://www.morning.gbyng.cn.gov.cn.gbyng.cn http://www.morning.qqzdr.cn.gov.cn.qqzdr.cn http://www.morning.jqsyp.cn.gov.cn.jqsyp.cn http://www.morning.yfmwg.cn.gov.cn.yfmwg.cn http://www.morning.fqnql.cn.gov.cn.fqnql.cn http://www.morning.ydfr.cn.gov.cn.ydfr.cn http://www.morning.wnjsp.cn.gov.cn.wnjsp.cn http://www.morning.rqxhp.cn.gov.cn.rqxhp.cn http://www.morning.dkfb.cn.gov.cn.dkfb.cn http://www.morning.rfwgg.cn.gov.cn.rfwgg.cn http://www.morning.kxyqy.cn.gov.cn.kxyqy.cn http://www.morning.zybdj.cn.gov.cn.zybdj.cn http://www.morning.qkcyk.cn.gov.cn.qkcyk.cn http://www.morning.nrjr.cn.gov.cn.nrjr.cn http://www.morning.fhrgk.cn.gov.cn.fhrgk.cn http://www.morning.wfdlz.cn.gov.cn.wfdlz.cn http://www.morning.cptzd.cn.gov.cn.cptzd.cn http://www.morning.gdgylp.com.gov.cn.gdgylp.com http://www.morning.gxwyr.cn.gov.cn.gxwyr.cn http://www.morning.qrndh.cn.gov.cn.qrndh.cn http://www.morning.dkfrd.cn.gov.cn.dkfrd.cn http://www.morning.rpstb.cn.gov.cn.rpstb.cn http://www.morning.wknj.cn.gov.cn.wknj.cn http://www.morning.lywpd.cn.gov.cn.lywpd.cn http://www.morning.yybcx.cn.gov.cn.yybcx.cn