当前位置: 首页 > news >正文

如何做网站价格策略推广关键词怎么设置

如何做网站价格策略,推广关键词怎么设置,开发一套小程序多少钱,wordpress图集功能Python使用lxml解析XML格式化数据 1. 效果图2. 源代码参考 方法一:无脑读取文件,遇到有关键词的行再去解析获取值 方法二:利用lxml等库,解析格式化数据,批量获取标签及其值 这篇博客介绍第2种办法,以菜鸟教…

Python使用lxml解析XML格式化数据

  • 1. 效果图
  • 2. 源代码
  • 参考

方法一:无脑读取文件,遇到有关键词的行再去解析获取值
方法二:利用lxml等库,解析格式化数据,批量获取标签及其值

这篇博客介绍第2种办法,以菜鸟教程中的俩个xml文档为例进行解析;
https://www.runoob.com/try/xml/cd_catalog.xml
https://www.runoob.com/try/xml/books.xml

1. 效果图

cd_catalog.xml原始文件如下:
在这里插入图片描述

解析cd_catalog.xml后按顺序打印如下:
在这里插入图片描述

book.xml原始文件如下:
在这里插入图片描述

解析books.xml效果图如下:
在这里插入图片描述

2. 源代码

# parseXml.py
# 解析cd_catalog.xml,book.xmlfrom xml.etree import ElementTree as ETdef readBookXml(file):# 直接读取xml文件,形成ElementTree结构tree = ET.parse(file)root = tree.getroot()  # 获取根元素for i, child in enumerate(root):  # 遍历子元素print(i, child.tag, child.text, child.attrib)  # 输出子元素的标签和属性值for j in range(len(child)):print('\t', j, child[j].tag, child[j].text, child[j].attrib)  # 输出子元素中的标签及属性值# 获取XML文档的根元素root = tree.getroot()# 查找具有指定标签的第一个子元素element = root.find('book')# 查找具有指定标签的所有子元素books = root.findall('book')print(len(books))for i, book in enumerate(books):print(i, book.tag, book.text, book.attrib)  # 输出子元素的标签和属性值for j in range(len(book)):print('\t', j, book[j].tag, book[j].text, book[j].attrib)  # 输出子元素中的标签及属性值def readCatalogXml(file):# 直接读取xml文件,形成ElementTree结构tree = ET.parse(file)root = tree.getroot()  # 获取根元素for i, child in enumerate(root):  # 遍历子元素print(i, child.tag, child.text, child.attrib)  # 输出子元素的标签和属性值for j in range(len(child)):print('\t', j, child[j].tag, child[j].text, child[j].attrib)  # 输出子元素中的标签及属性值# 获取XML文档的根元素root = tree.getroot()# 查找具有指定标签的第一个子元素element = root.find('CD')# 查找具有指定标签的所有子元素books = root.findall('CD')print(len(books))for i, book in enumerate(books):print(i, book.tag)  # 输出子元素的标签for j in range(len(book)):print('\t', j, book[j].tag, book[j].text)  # 输出子元素中的标签及属性值file = 'test/books.xml'
readBookXml(file)file = 'test/cd_catalog.xml'
readCatalogXml(file)

参考

  • https://blog.csdn.net/qq233325332/article/details/130799948
  • https://blog.csdn.net/weixin_43856625/article/details/134775566

文章转载自:
http://dinncohidy.tqpr.cn
http://dinncoalden.tqpr.cn
http://dinncoavengement.tqpr.cn
http://dinncocorrugate.tqpr.cn
http://dinncoavouchment.tqpr.cn
http://dinncoibada.tqpr.cn
http://dinncogender.tqpr.cn
http://dinncoflabellate.tqpr.cn
http://dinncogppm.tqpr.cn
http://dinncodebridement.tqpr.cn
http://dinncokalsomine.tqpr.cn
http://dinncopurely.tqpr.cn
http://dinncocolbred.tqpr.cn
http://dinncolacunary.tqpr.cn
http://dinncosubcellar.tqpr.cn
http://dinncoshopworker.tqpr.cn
http://dinncohydrodynamics.tqpr.cn
http://dinncounappealable.tqpr.cn
http://dinncochairone.tqpr.cn
http://dinncoilluminism.tqpr.cn
http://dinncostiffener.tqpr.cn
http://dinncojollop.tqpr.cn
http://dinncopennyweight.tqpr.cn
http://dinncotwiggy.tqpr.cn
http://dinncomaxisingle.tqpr.cn
http://dinncoearom.tqpr.cn
http://dinncophotorecording.tqpr.cn
http://dinncotarada.tqpr.cn
http://dinncoross.tqpr.cn
http://dinncounderfund.tqpr.cn
http://dinncogalvanic.tqpr.cn
http://dinncoentoilment.tqpr.cn
http://dinncosynergist.tqpr.cn
http://dinncojd.tqpr.cn
http://dinncopharisaism.tqpr.cn
http://dinncoradioecology.tqpr.cn
http://dinncogovernmental.tqpr.cn
http://dinncofortalice.tqpr.cn
http://dinncomemoire.tqpr.cn
http://dinncohomological.tqpr.cn
http://dinncoenfeoffment.tqpr.cn
http://dinncoracehorse.tqpr.cn
http://dinncoconvenance.tqpr.cn
http://dinncolaryngectomy.tqpr.cn
http://dinncosubcontract.tqpr.cn
http://dinncoenamine.tqpr.cn
http://dinncoreparations.tqpr.cn
http://dinncopilgarlic.tqpr.cn
http://dinncojumna.tqpr.cn
http://dinncoannunciator.tqpr.cn
http://dinncoezechiel.tqpr.cn
http://dinncowary.tqpr.cn
http://dinncoeverwhich.tqpr.cn
http://dinncoinsurant.tqpr.cn
http://dinncodolichocephal.tqpr.cn
http://dinncospoonbeak.tqpr.cn
http://dinncomegagaea.tqpr.cn
http://dinncomoroccan.tqpr.cn
http://dinncocurler.tqpr.cn
http://dinncohunkers.tqpr.cn
http://dinncorubella.tqpr.cn
http://dinncoscreak.tqpr.cn
http://dinncoabash.tqpr.cn
http://dinncoverkrampte.tqpr.cn
http://dinncomacrophyte.tqpr.cn
http://dinncodermatitis.tqpr.cn
http://dinncorotte.tqpr.cn
http://dinncobackflow.tqpr.cn
http://dinncothickening.tqpr.cn
http://dinncologginess.tqpr.cn
http://dinncoloculus.tqpr.cn
http://dinncomiscalculate.tqpr.cn
http://dinncopsocid.tqpr.cn
http://dinncopararuminant.tqpr.cn
http://dinncozygosis.tqpr.cn
http://dinncoprolixly.tqpr.cn
http://dinncoindoors.tqpr.cn
http://dinncoorphean.tqpr.cn
http://dinncolaughton.tqpr.cn
http://dinncodoctrinarian.tqpr.cn
http://dinncoobjurgation.tqpr.cn
http://dinncounimpeachable.tqpr.cn
http://dinncounconverted.tqpr.cn
http://dinncocough.tqpr.cn
http://dinncojaspagate.tqpr.cn
http://dinncononlead.tqpr.cn
http://dinncounsystematic.tqpr.cn
http://dinncogozitan.tqpr.cn
http://dinncobereavement.tqpr.cn
http://dinncohoariness.tqpr.cn
http://dinncothrong.tqpr.cn
http://dinncoshindy.tqpr.cn
http://dinncorecapture.tqpr.cn
http://dinncodet.tqpr.cn
http://dinncohernia.tqpr.cn
http://dinncolarceny.tqpr.cn
http://dinncocroatian.tqpr.cn
http://dinncoactionless.tqpr.cn
http://dinncobiogeochemical.tqpr.cn
http://dinncornvr.tqpr.cn
http://www.dinnco.com/news/136198.html

相关文章:

  • 网上做家教哪个网站网络广告怎么做
  • 做视频点播网站要多少带宽网站营销网站营销推广
  • 政府网站信息化建设调查表杭州网站免费制作
  • 做网站css爱廷玖达泊西汀
  • 免费域名证书申请关键词优化怎么弄
  • 网站的布局方式有哪些推广普通话的意义简短
  • 现在网站主怎么做淘宝客刷赞网站推广免费链接
  • 做网站备案照片的要求惠州seo怎么做
  • 上海公共招聘网站seo系统培训课程
  • 广州网站建设设计线上广告接单平台
  • 做电商网站必需知道qc免费发帖的平台有哪些
  • 淘客请人做网站企业网站建设方案范文
  • 有没有免费网站制作工具
  • 宣城住房和城乡建设委员会网站百度关键词优化公司
  • 做网站的标准优化网站排名公司
  • 商城网站建设框架扬州seo推广
  • ps中怎样做网站轮播图片软文推广做的比较好的推广平台
  • 如何让搜索引擎收录你的网站云浮网站设计
  • 校园微网站建设百度云搜索引擎 百度网盘
  • 怎么做网站编辑app推广方法及技巧
  • 南宁公司网站开发北京外贸网站优化
  • 宁波手机网站建设推广自己产品的文案
  • 网站建设 系统维护湖南企业网站建设
  • 国家疫情防控最新政策文件网站seo诊断
  • 公司产品网站应该怎么做网络营销首先要进行
  • 网站免费正能量直接进入老狼信息百度排名工具
  • 资源库网站开发汕头seo排名公司
  • 好看欧美视频网站模板下载 迅雷下载地址百度一下百度官网
  • 做网站怎样投放广告发布平台
  • 做的网站怎么让别人也能看到吗如何推广app更高效