美文网首页
Python在import Iterable时报Deprecat

Python在import Iterable时报Deprecat

作者: IUVO | 来源:发表于2018-12-26 22:17 被阅读53次

    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
    

    报的这个警告,大意是这个从collectionsimport的方法即将被废弃,且在3.8版本中停止工作,我还是喜欢按规矩办事,解决的方法也很简单:

    from collections.abc import Iterable
    

    mark一下,菜鸟不怕烂笔头。

    相关文章

      网友评论

          本文标题:Python在import Iterable时报Deprecat

          本文链接:https://www.haomeiwen.com/subject/ckzklqtx.html