模塊導入from collections import Iterator,Iterable失敗


1.引入模塊報錯

  from collections import Iterator,Iterable

報錯:
  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 Iterator,Iterable

2.修改為:

  from collections.abc import Iterator,Iterable


 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM