模块导入from collections import Iterator,Iterable失败
Posted ngu-px
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了模块导入from collections import Iterator,Iterable失败相关的知识,希望对你有一定的参考价值。
1.引入模块报错
from collections import Iterator,Iterable
报错:
DeprecationWarning: Using or importing the ABCs from ‘collections‘ instead of from ‘collections.abc‘ is deprecated, and in 3.8 it will stop working from collections import Iterator,Iterable
2.修改为:
from collections.abc import Iterator,Iterable
以上是关于模块导入from collections import Iterator,Iterable失败的主要内容,如果未能解决你的问题,请参考以下文章