报错:module ‘collections‘ has no attribute ‘Iterable‘

410 阅读1分钟

使用python 高版本,在使用collections遇到报错:module ‘collections’ has no attribute ‘Iterable’ 查了资料 在python3.9 之后collections.Iterable被弃用了。

image.png 添加修改语句 collections.Iterable == collections.abc.Iterable

image.png