摘要: 传入:存储 xml 的根路径 返回:一个 xml 文件中的标注存储为一条字典记录,返回出入根路径中所有 xml 标记的数据信息 1 import os 2 import xml.dom.minidom 3 4 ### 传入存储 xml 文件的根路径 --> 以字典的形式返回 xml 文件中存储的数据 阅读全文
posted @ 2021-12-13 11:04 Bro_Li 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 作用:传入存储xml文件的根路径,显示 xml 文件中所有的数据信息 1 import os 2 import xml.dom.minidom 3 4 def xml_label_names(xml_root_path): 5 xml_files = os.listdir(xml_root_path 阅读全文
posted @ 2021-12-13 10:32 Bro_Li 阅读(342) 评论(0) 推荐(0) 编辑