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