如何解决 ImportError: cannot import name ‘Iterable‘ from ‘collections‘ (Python)

如何解决 ImportError: cannot import name ‘Iterable’ from ‘collections’ (Python)

今天学习 Python 迭代器时 ,发现报了一个错:如何解决 ImportError: cannot import name ‘Iterable‘ from ‘collections‘ (Python)_第1张图片
查了百度后, 发现是版本问题:
我现在用的是3.11, 但是Iterable以及以下collections的方法都在3.10版本后被取消了。

["Awaitable", "Coroutine", "AsyncIterable", "AsyncIterator", "AsyncGenerator", "Hashable", "Iterable", "Iterator", "Generator", "Reversible", "Sized", "Container", "Callable", "Collection", "Set", "MutableSet", "Mapping", "MutableMapping", "MappingView", "KeysView", "ItemsView", "ValuesView", "Sequence", "MutableSequence", "ByteString"]

办法要么使用新的方法(不知道有没有), 或者通过更改文件。
打开报错的路径里的文件(不同版本可能不一样), 插入一以下代码:

# 修改之前的出错代码行
# from collections import Iterable

# 修改为以下
try:
    from collections.abc import Iterable
except ImportError:
    from collections import Iterable

问题解决完成

你可能感兴趣的:(python)