Python读取、写入、修改、删除xml文件内容

本人在工作中需要读写xml文件,看到大多是C++实现的,本人对于Python语言比较熟悉,想使用Python实现一下。Python读取xml文件有多种方式,其中一种是使用包xml.dom.minidom,这个包的官方文档地址为:https://docs.python.org/3/library/xml.dom.minidom.html

这个地址上面有API接口参数说明。我这里大概说一下读取、写入、修改、删除节点内容的方式。

我的xml文件如下:



face_eyeball
1

  592 96 460 460

  7.51879150e+02 2.38709381e+02 7.69056274e+02 2.33537506e+02
  7.90256226e+02 2.31218750e+02 8.11456238e+02 2.37512497e+02

""

  0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0

你可能感兴趣的:(linux)