使用第三方模块xmltodict
pip3 install xmltodict
使用:
import xmltodict def xmlToJson(xml_str): '''传入xml字符串,返回字典''' dic = xmltodict.parse(xml_str, encoding='utf-8') return dic