gpt4 book ai didi

python - 获取Python xml ElementTree的字符串源

转载 作者:太空狗 更新时间:2023-10-29 20:23:06 26 4
gpt4 key购买 nike

如何在 Python 中以字符串形式获取 ElementTree 的源代码?

最佳答案

import xml.etree.ElementTree as ET
tree = ET.parse(source)
root = tree.getroot()
ET.tostring(root)

请注意,sourceET.tostring(doc) 的内容可能存在格式差异。

关于python - 获取Python xml ElementTree的字符串源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13533156/

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