标签: python elementtree
我使用
tree = ET.parse('test.xml') #do my manipulation
我如何将xml文件写回磁盘,就像我读过它一样,尽管有我的修改。
答案 0 :(得分:1)
<?xml version="1.0" encoding="utf-16"?>
这是输入xml文件的第一行
我添加了tree.write("output.sbp", encoding="utf-16"),现在它们的大小相同。
tree.write("output.sbp", encoding="utf-16")