gpt4 book ai didi

python - 附加具有打开和关闭标记 Python 的 XML 标记和属性

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

我正在尝试构建下面的 xml。我希望能够附加更多<mcastChannel attrs></mcastChannel>标记到此 xml。相反,我得到了。

我确实读过this answer类似的问题,但我无法将其附加到 XML_STR_Config。

尝试构建 XML:

<?xml version="1.0"?>
<ewe mask="0x80" hw_type="100" br="SC" release="5.3.0-10">
<probe>
<core>
<setup>
<mcastnames>
<mclist xmlChildren="list">
<mcastChannel attrs></mcastChannel>
<mcastChannel attrs></mcastChannel>
</mclist>
</mcastnames>
</setup>
</core>
</probe>
</ewe>

我当前的代码:

from xml.etree import ElementTree
from xml.etree.ElementTree import Element
CHANNEL_DATA = [['nameTest', '225.0.0.1']]
APPEND_CONFIG = ('mcastChannel name="{}" tuningId="{}" addr="{}"')
xml_root = ElementTree.ElementTree(
ElementTree.fromstring(XML_STR_CONFIG))
multicast_xml_child = xml_root.getroot()[0][0][0][0][0]

for tuning_id, data in enumerate(CHANNEL_DATA):
multicast_xml_child.append(Element(APPEND_CONFIG.format(data[0], tuning_id, data[1])))
xml_root.write(output_file, xml_declaration=True, encoding='utf-8', method='xml')

结果:

<?xml version='1.0' encoding='utf-8'?>
<ewe br="SC" hw_type="100" mask="0x80" release="5.4.0-10">
<probe>
<core>
<setup>
<mcastnames>
<mclist xmlChildren="list">
<mcastChannel name="test" tuningId="0" addr=""/>
<mcastChannel name="test" tuningId="1" addr="225.1.0.0"/>
</mcastnames>
</setup>
</core>
</probe>
</ewe>

最佳答案

您需要为元素设置“空”文本:

root = etree.Element('root')
root.text = ''
print (etree.tostring(root))

返回:

<root></root>

关于python - 附加具有打开和关闭标记 Python 的 XML 标记和属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53088832/

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