gpt4 book ai didi

python - 阅读,修改 xml 使用 python 将其保存在新的 xml 中

转载 作者:数据小太阳 更新时间:2023-10-29 03:00:05 26 4
gpt4 key购买 nike

以下是我正在执行的步骤:

  1. 以字典形式读取xml文件

    import xmltodict

    with open("example.xml") as sxml:
    data = xmltodict.parse(sxml.read())
  2. 改变值(value)

    data["key"]["key1"] = "some value"
  3. 我想将更改保存在 example.xml 文件中,或者我想创建一个新文件并保存更改。

我该怎么做?

最佳答案

正在关注 README我们可以简单地做

with open('example.xml', 'w') as result_file:
result_file.write(xmltodict.unparse(data))

如果你想覆盖example.xml 或者

with open('result.xml', 'w') as result_file:
result_file.write(xmltodict.unparse(data))

如果你想创建新文件result.xml

关于python - 阅读,修改 xml 使用 python 将其保存在新的 xml 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52499959/

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