近来刚学python,在xml文件中如何编程遍历所有结点的标签?求请教,万分...
发布网友
发布时间:2022-04-27 06:48
我来回答
共1个回答
热心网友
时间:2022-04-19 00:06
class Fileoperator:
def openfile(self,filepath):
dom = xml.dom.minidom.parse(filepath)
root = dom.documentElement
aa = dom.getElementsByTagName('rTick')
for a in aa:
print a.firstChild.data
你代码里面的 aa 可以直接用for循环遍历。不需要用k做index.