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 Iterable
执行以下代码时
from collections import Iterable
报的这个警告,大意是这个从collections
中import
的方法即将被废弃,且在3.8版本中停止工作,我还是喜欢按规矩办事,解决的方法也很简单:
from collections.abc import Iterable
mark
一下,菜鸟不怕烂笔头。
网友评论