我是靠谱客的博主 鲜艳夕阳,这篇文章主要介绍DeprecationWarning: Using or importing the ABCs from ‘collections‘ instead of from ‘collections.abc‘,现在分享给大家,希望可以做个参考。
问题描述
使用 from collections import Iterable 时出现了如下警告:
问题分析
这个异常报错是导入collections的原因,上面说python3.8版本不在支持collections,建议使用collections.abc
解决方法
复制代码
1
2
3
4# from collections import Iterable from collections.abc import Iterable print(isinstance('abc', Iterable))
把collections 替换为 collections.abc 就不会有警告了~
最后
以上就是鲜艳夕阳最近收集整理的关于DeprecationWarning: Using or importing the ABCs from ‘collections‘ instead of from ‘collections.abc‘的全部内容,更多相关DeprecationWarning:内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复