cannot import name 'Container' from 'collections'
时间: 2023-11-02 22:06:49 浏览: 843
"cannot import name 'Container' from 'collections'" 的错误通常出现在Python 3.10及更高版本中,因为从这个版本开始,库collections不再导入名为Container的对象。这是因为Python 3.10引入了新的库collections.abc,它取代了collections模块中的某些对象。因此,如果您希望在Python 3.10及更高版本中使用Container对象,可以尝试从collections.abc中导入它,如下所示:
```python
from collections.abc import Container
```
这样,您就可以成功导入'Container'对象,并在您的代码中使用它了。请注意,如果您的代码需要兼容Python 3.10之前的版本,您可以使用类似以下的代码:
```python
try:
from collections.abc import Container
except ImportError:
from collections import Container
```
这样,如果在Python 3.10及更高版本中,您可以导入'Container'对象,否则将会导入collections模块中的'Container'对象。这样可以确保您的代码在不同版本的Python上都能正常运行。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [001 ImportError: cannot import name ‘Iterable‘ from ‘collections](https://blog.csdn.net/qq_55285829/article/details/127577631)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文