我正在使用一种方法来生成多个 xml 文件。我想跟踪使用字典的方法生成的文件
map = {}
dstFile = f'path-to-dir\\{self.name}.xml'
with open(dstFile,'w') as f_out:
f_out.write( u'<?xml version="1.0" encoding="UTF-8"?>'+'\n')
f_out.write( ET.tostring(self.root).decode('UTF-8')
map = {f'{self.name}':f'{self.name}.xml'}
但是以map这种方式使用字典,字典中以前的值被覆盖
我希望当该方法生成文件时,其名称将被添加到字典中,同时保留旧的键值对。
谢谢。
跃然一笑
眼眸繁星
相关分类