我是靠谱客的博主 鲜艳夕阳,最近开发中收集的这篇文章主要介绍DeprecationWarning: Using or importing the ABCs from ‘collections‘ instead of from ‘collections.abc‘,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

问题描述

使用 from collections import Iterable 时出现了如下警告:

问题分析

这个异常报错是导入collections的原因,上面说python3.8版本不在支持collections,建议使用collections.abc

解决方法

# 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: Using or importing the ABCs from ‘collections‘ instead of from ‘collections.abc‘所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(48)

评论列表共有 0 条评论

立即
投稿
返回
顶部