使用 ElementTree 修改 XML 文件

Modify XML file using ElementTree

我正在尝试使用 Python 执行以下操作:

这是我的原创xml:

     <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <body start="20.04.2014 10:02:60">
        <pricelist>
            <item>
              <name>LEO - red pen</name>
              <price>31,4</price>
              <price_snc>0</price_snc>
              <price_ao>0</price_ao>
              <price_qty>
                <item qty="150" price="28.20" />
                <item qty="750" price="26.80" />
                <item qty="1500" price="25.60" />
               </price_qty>
            <stock>50</stock>
            </item>
        </pricelist>

新的 xml 应该是这样的:

    <pricelist>
    <item>
      <name>LEO - red pen</name>
      <price>31,4</price>
      <price_snc>0</price_snc>
      <price_ao>0</price_ao>
      <price_qty>
        <item qty="10" price="31.20" /> **-this is the new line**
        <item qty="150" price="28.20" />
        <item qty="750" price="26.80" />
        <item qty="1500" price="25.60" />
       </price_qty>
    <stock>50</stock>
    </item>
</pricelist>

到目前为止我的代码:

import xml.etree.cElementTree as ET
from xml.etree.ElementTree import Element, SubElement

tree = ET.ElementTree(file='pricelist.xml')
root = tree.getroot()
pos=0

# price - raise the main price and insert new tier
for elem in tree.iterfind('pricelist/item/price'):
    price = elem.text
    newprice = (float(price.replace(",", ".")))*1.2    

    newtier = "NEW TIER" 
    SubElement(root[0][pos][5], newtier)
    pos+=1

tree.write('pricelist.xml', "UTF-8")

结果:

...
 <price_qty>
        <item price="28.20" qty="150" />
        <item price="26.80" qty="750" />
        <item price="25.60" qty="1500" />
      <NEW TIER /></price_qty>

感谢您的帮助。

不要使用固定索引。您已经有了 item 元素,为什么不使用它呢?

tree = ET.ElementTree(file='pricelist.xml')
root = tree.getroot()

for elem in tree.iterfind('pricelist/item'):
    price = elem.findtext('price')
    newprice = float(price.replace(",", ".")) * 1.2

    newtier = ET.Element("item", qty="10", price="%.2f" % newprice)
    elem.find('price_qty').insert(0, newtier)

tree.write('pricelist.xml', "UTF-8")