dom = ElementTree.fromstring(xmlStr) AttributeError: type object 'ElementTree' has no attribute 'fromstring'
时间: 2023-06-21 18:09:13 浏览: 166
domtree.js
这个错误通常是由于导入的模块不正确或版本不兼容导致的。请确保你已经正确地导入了 ElementTree 模块。
在 Python 2.x 中,可以使用以下导入方式:
```python
import xml.etree.ElementTree as ET
```
在 Python 3.x 中,可以使用以下导入方式:
```python
import xml.etree.ElementTree as ET
```
或者
```python
import xml.etree.ElementTree
```
如果你仍然遇到问题,可以尝试更新 ElementTree 模块或检查你的 Python 版本是否支持该模块。
阅读全文