国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

python對(duì)XML文件的操作實(shí)現(xiàn)代碼

瀏覽:121日期:2022-08-01 08:28:12

python對(duì)XML文件的操作

1、xml 創(chuàng)建

import xml.etree.ElementTree as ETnew_xml=ET.Element(’personinfolist’) #最外面的標(biāo)簽名personinfo=ET.SubElement(new_xml,’personinfo’,attrib={’enrolled’:’aaa’}) #對(duì)應(yīng)的參數(shù)是:父級(jí)標(biāo)簽是誰(shuí),當(dāng)前標(biāo)簽名,當(dāng)前標(biāo)簽屬性與值name=ET.SubElement(personinfo,’name’)name.text=’xaoming’age=ET.SubElement(personinfo,’age’,attrib={’checked’:’yes’})age.text=’23’personinfo2=ET.SubElement(new_xml,’personinfo’,attrib={’enrolled’:’bbb’})name=ET.SubElement(personinfo2,’name’)name.text=’xaokong’age=ET.SubElement(personinfo2,’age’,attrib={’checked’:’no’})age.text=’20’et=ET.ElementTree(new_xml)et.write(’text1.xml’,encoding=’utf-8’,xml_declaration=True)#生成text1.xml

2、xml 數(shù)據(jù)查詢

import xml.etree.ElementTree as ETtree=ET.parse(’text1.xml’)root=tree.getroot()print(root.tag)#遍歷 xml 文檔for i in root: print(i.tag,i.attrib) # tag是指標(biāo)簽名,attrib 是指標(biāo)簽里的屬性,text 是指標(biāo)簽內(nèi)容 for j in i: print(j.tag,j.attrib,j.text) for k in j: print(k.tag,k.attrib,k.text)#只遍歷 year 標(biāo)簽for w in root.iter(’year’): #只遍歷指定標(biāo)簽 print(w.tag,w.text)

3、xml 數(shù)據(jù)修改

import xml.etree.ElementTree as ETtree=ET.parse(’text1.xml’)root=tree.getroot()print(root.tag)#修改 xmlfor node in root.iter(’year’): #要修改的標(biāo)簽 new_year=int(node.text)+1 node.text=str(new_year) node.set(’updsted_by’,’kong’) #給這個(gè)標(biāo)簽(year)添加新的屬性 key:valuetree.write(’text1.xml’) #再吧數(shù)據(jù)寫(xiě)回去

4、xml 數(shù)據(jù)刪除

import xml.etree.ElementTree as ETtree=ET.parse(’text1.xml’)root=tree.getroot()for country in root.findall(’country’): #會(huì)取這個(gè)標(biāo)簽所有的數(shù)據(jù) rank=int(country.find(’rank’).text) if rank > 50: root.remove(country) #刪除數(shù)據(jù)tree.write(’output.xml’) #再把數(shù)據(jù)寫(xiě)回文件

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: Python 編程
相關(guān)文章:
主站蜘蛛池模板: 水富县| 溧阳市| 科技| 平舆县| 满洲里市| 巴彦县| 易门县| 富川| 乌苏市| 大荔县| 古田县| 邯郸市| 常宁市| 鄯善县| 邮箱| 新安县| 蓬莱市| 历史| 项城市| 晴隆县| 九寨沟县| 平顶山市| 开远市| 昭觉县| 贺州市| 沂南县| 诸城市| 洞口县| 沂源县| 靖远县| 平邑县| 延川县| 通州市| 永泰县| 涿鹿县| 崇礼县| 灵石县| 连江县| 香河县| 自贡市| 云梦县|