gpt4 book ai didi

Python ElementTree 解析后不会更新新文件

转载 作者:太空宇宙 更新时间:2023-11-03 16:12:17 25 4
gpt4 key购买 nike

使用ElementTree解析XML中的属性值并编写新的XML文件。它将控制台新的更新值并写入一个新文件。但不会更新新文件中的任何更改。请帮助我理解我做错了什么。这是 XMLPython 代码:

XML

<?xml version="1.0"?>
<!--
-->
<req action="get" msg="1" rank="1" rnklst="1" runuf="0" status="1" subtype="list" type="60" univ="IL" version="fhf.12.000.00" lang="ENU" chunklimit="1000" Times="1">
<flds>
<f i="bond(long) hff" aggregationtype="WeightedAverage" end="2016-02-29" freq="m" sid="fgg" start="2016-02-29"/>
<f i="bond(short) ggg" aggregationtype="WeightedAverage" end="2016-02-29" freq="m" sid="fhf" start="2016-02-29"/>
</flds>
<dat>
<r i="hello" CalculationType="3" Calculate="1" />
</dat>
</req>

Python

import xml.etree.ElementTree as ET 

with open('test.xml', 'rt') as f:
tree = ET.parse(f)

for node in tree.iter('r'):
port_id = node.attrib.get('i')
new_port_id = port_id.replace(port_id, "new")
print node

tree.write('./new_test.xml')

最佳答案

当您获取属性i并将其分配给port_id时,您就拥有了一个常规的Python字符串。对它调用replace只是Python字符串.replace()方法。

您想要使用.set() etree节点的方法:

for node in tree.iter('r'):
node.set('i', "new")
print node

关于Python ElementTree 解析后不会更新新文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39170748/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com