将子元素插入到elementree python elementtree中

时间:2016-05-23 11:17:47

标签: python elementtree

<project>
  <publisher>
     <plugin name="plot">
       <plots>
          <plot name = "xyz">
             <title> </title>
             <yaxis> </yaxis>
             <file type = "csv">
                 <label> </label>
                 <flags> </flags>
             </file>
             <group> </group>
          </plot>
          <plot name = "abc">
             <title> </title>
             <yaxis> </yaxis>
             <file type = "csv">
                 <label> </label>
                 <flags> </flags>
             </file>
             <group> </group>
          </plot>
        </plots>
      </plugin>
   </publisher>
</project>

我想根据某些输入添加一个或多个'plot'元素并更新标记的值。我试图使用et.SubElement()但它不会复制孩子的。有办法吗?

0 个答案:

没有答案