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 Iterablefrom collections.abc import Iterableprint(isinstance('abc', Iterable))把col