在Python中,将XML编辑为字典可以使用第三方库xmltodict
。首先,需要安装xmltodict
库,可以使用以下命令进行安装:
pip install xmltodict
然后,可以使用以下代码将XML字符串转换为字典:
import xmltodict
xml_string = '<root><name>John</name><age>30</age></root>'
xml_dict = xmltodict.parse(xml_string)
print(xml_dict)
输出结果:
{'root': {'name': 'John', 'age': '30'}}
xmltodict
库可以将XML字符串转换为Python字典,方便进行后续处理。
领取专属 10元无门槛券
手把手带您无忧上云