摘要: python3 xml文件转json,并且把xml key的首字母变成小写 import xmltodict import json import re with open('source.xml', 'r', encoding='UTF-8') as f: str_xml = f.read() s 阅读全文
posted @ 2022-02-19 09:27 testway 阅读(124) 评论(0) 推荐(0) 编辑