XuLaLa.Tech

首页客户端下载Windows 使用V2Ray 教程SSR 教程Clash 教程

Python 报错 module 'collections' has no attribute 'Iterable'

2025.03.27

今天在学Python的时候,一直报错 AttributeError: module 'collections' has no attribute 'Iterable' 。网上一搜,说是Python 3.9以后collections.Iterable被废弃了,在更高版本的环境中使用时会出现module 'collections' has no attribute 'Iterable’报错。

遇到不会的我就问ChatGPT,给了个解决方案:

from collections import Iterable# 如果当前 Python 版本不支持 collections.abc 中的 Iterable,则手动定义if not hasattr(Iterable, '__iter__'):Iterable = collections.abc.Iterable

然而,仍然报错。

无奈去google了下,在csdn上找到了答案:

import collectionscollections.Iterable = collections.abc.Iterable这样做的目的是确保你的代码在不同的 Python 版本或环境中都能使用 collections.Iterable,而不会受到模块变化的影响。提高代码的兼容性。
© 2010-2022 XuLaLa 保留所有权利 本站由 WordPress 强力驱动
请求次数:69 次,加载用时:0.665 秒,内存占用:32.19 MB