python 3 导入 迭代判断

导入迭代报如下的错:

 代码:from collections import Iterable

Warning (from warnings module):
File "__main__", line 1
DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working。

因为collections在python 3.8已经不起作用了,需要改成collections.abc,故正确应该是: from  collections.abc  import  Iterable

如下图:

 

posted on 2019-08-05 09:24  万能人  阅读(1670)  评论(2)    收藏  举报

导航