lxml.etree._ElementUnicodeResult转换成字典
时间: 2023-04-09 09:00:58 浏览: 269
Python3.5以上版本lxml导入etree报错的解决方案
可以使用Python内置的xml.etree.ElementTree模块中的Element对象的attrib属性将lxml.etree._ElementUnicodeResult对象转换成字典。具体代码如下:
```python
import xml.etree.ElementTree as ET
# 假设xml_str是一个包含XML数据的字符串
root = ET.fromstring(xml_str)
result_dict = dict(root.attrib)
```
其中,root.attrib是一个字典,包含了Element对象的所有属性和对应的值。将其转换成普通的字典即可。
阅读全文