遍历XML文件

#encoding=utf-8
from xml.etree import ElementTree as ET
#要找出所有人的年龄
per=ET.parse('d:\1.xml')
p=per.findall('./STATION')
for x in p:
    print x.attrib
print
for oneper in p:  #找出person节点
    for child in oneper.getchildren(): #找出person节点的子节点
        print child.tag,':',child.text

    print '############'

  

原文地址:https://www.cnblogs.com/xiaobaichuangtianxia/p/3853129.html