欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Using or importing the ABCs from ‘collections‘ instead of from ‘collections.abc‘ is deprecated, and

程序员文章站 2022-04-17 22:08:01
...

用python实现import语句时,出现了以下问题:

>>> from collections import Iterable
__main__:1: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working

Using or importing the ABCs from ‘collections‘ instead of from ‘collections.abc‘ is deprecated, and
问题原因:
版本更新发出的警告。目前可以忽略,再次输入可正常使用。