使用ElementTree在Python中可视化XML子元素?

时间:2014-04-10 21:28:04

标签: python xml tree elementtree hierarchical

鉴于XML:

<Anthology>
    <Price></Price>
    <Book>
        <Price></Price>
        <Leaflet>
            <Title>War</Title>
            <Price>20</Price>
        </Leaflet>
        <Leaflet>
            <Title>Peace</Title>
            <Price>30</Price>
        </Leaflet>
    </Book>
    <Book>
        <Price>60</Price>
    </Book>
</Anthology>

我想更新价格&#39;标签以分层方式打印:

  

选集价格: 110 ,     预订1价格: 50 ,     第2册价格: 60

或者在伪说话中,我想搜索一个索引项目,并且其价格为&#39;标签反映所有孩子的总和&#39;价格&#39;标签

有关如何使用ElementTree攻击此问题的任何建议吗?

0 个答案:

没有答案