溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python - xml模塊

發(fā)布時間:2020-07-13 20:27:29 來源:網(wǎng)絡 閱讀:698 作者:lyl無狀態(tài) 欄目:編程語言

xml模塊

處理文檔:
Python - xml模塊

import xml.etree.ElementTree as ET

tree = ET.parse('xmlfile')    # ET.parse() 解析xml文檔
root = tree.getroot()        # 獲取根節(jié)點
print(root.tag)          # root.tag 獲取根節(jié)點標簽   這里是data

Python - xml模塊

for i in root:
    print(i.tag)        # 獲取根節(jié)點下的標簽
    print(i.attrib)     # 獲取根節(jié)點下的標簽屬性

標簽>>: country 、標簽屬性>>: {'name': 'Panama'}

Python - xml模塊

同樣的 country 下也有標簽、屬性等:

Python - xml模塊

也可以用for循環(huán)取數(shù)據(jù):

Python - xml模塊

被標簽包圍的數(shù)據(jù)取出來:

Python - xml模塊

k.text

Python - xml模塊

root.iter('year') 遍歷year節(jié)點:

Python - xml模塊

修改year節(jié)點的屬性和值:

Python - xml模塊
Python - xml模塊

刪除:

Python - xml模塊

運行后顯示:

Python - xml模塊

新建一個xml文檔

Python - xml模塊

代碼運行后:

Python - xml模塊

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經查實,將立刻刪除涉嫌侵權內容。

yy
AI