参考这个

xml的读取。

# -*- coding: utf-8 -*-
#新文件路径与旧文件路径
NewFilePath = r".\kcbpspd.xml"#新文件路径
OldFilePath = r".\xml\KCBPSPD.xml"#旧文件路径
 

from xml.dom.minidom import parse
#minidom解析器打开xml文档并将其解析为内存中的一棵树
DOMTree=parse(NewFilePath)
#获取xml文档对象,就是拿到树的根
collection=DOMTree.documentElement
 
DOMTree2=parse(OldFilePath)
 
collection2=DOMTree2.documentElement

print(collection)
if collection.hasAttribute('kcbpspd'):
       #判断根节点collection是否有shelf属性,有则获取并打印属性值
      print('Root element is ',collection.getAttribute('kcbpspd'))
      
#获取所有的movies节点
movies=collection.getElementsByTagName('program')
movies2=collection2.getElementsByTagName('program')
print(movies.length)
print(movies2.length)
#遍历集合
list1 = []
list2 = []
for movie in movies:
    #temp = []
    #temp.append(movie.getAttribute('name'))
    #temp.append(movie.getAttribute('module'))
    list1.append(movie.getAttribute('name'))
    if('290402' == movie.getAttribute('name')):
        print(len(list1))
for movie2 in movies2:
    #temp = []
    #temp.append(movie.getAttribute('name'))
    #temp.append(movie.getAttribute('module'))
    list2.append(movie2.getAttribute('name'))
    if('290402' == movie2.getAttribute('name')):
        print(len(list2))

print(set(list1).difference(set(list2)))   
Logo

魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。

更多推荐