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

如下图:

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM