gpt4 book ai didi

python - 在 Python 中替换 XML 元素

转载 作者:数据小太阳 更新时间:2023-10-29 02:18:47 25 4
gpt4 key购买 nike

我正在尝试用一组新坐标替换 bbox 中的元素。

我的代码:

    # import element tree
import xml.etree.ElementTree as ET


#import xml file
tree = ET.parse('C:/highway.xml')
root = tree.getroot()

#replace bounding box with new coordinates

elem = tree.findall('bbox')
elem.txt = '40.5,41.5,-12.0,-1.2'

我的 xml 文件:

   <geoEtl>
<source>
<server>localhost</server>
<port>xxxx</port>
<db>vxxx</db>
<user>xxxx</user>
<passwd>xxxx</passwd>
</source>
<targetDir>/home/firstuser/</targetDir>
<bbox>-52.50,-1.9,52.45,-1.85</bbox>
<extractions>
<extraction>
<table>geo_db_roads</table>
<outputName>highways</outputName>
<filter>highway = 'motorway'</filter>
<geometry>way</geometry>
<fields>
<field>name</field>
</fields>
</extraction>
</extractions>
</geoEtl>

我已经尝试了多种方法来处理我在这里找到的事情,但似乎没有用。谢谢。

我收到的错误如下:

line 20, in <module> elem.txt = '40.5,41.5,-12.0,-1.2' AttributeError: 'list' object has no attribute 'txt' –

最佳答案

findall函数,顾名思义,查找所有匹配元素,而不仅仅是一个。

所以,在这之后:

elem = tree.findall('bbox')

elemElement 的列表。而且,与任何其他列表一样,这个:

elem.txt = '40.5,41.5,-12.0,-1.2'

会给你一个错误:

AttributeError: 'list' object has no attribute 'txt'

如果你想对列表的每个成员做某事,你必须遍历它:

elems = tree.findall('bbox')
for elem in elems:
elem.txt = '40.5,41.5,-12.0,-1.2'

关于python - 在 Python 中替换 XML 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17437103/

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