Python 运行出现 DeprecationWarning 问题的解决办法

2022-06-19 13:19:15

今天运行 py 时出现下面的问题:

DeprecationWarning: Usingor importing the ABCsfrom'collections' instead offrom'collections.abc'is deprecated since Python3.3,andin3.9 it will stop working

是这个语句出现的问题:

from collectionsimport Iterable

好像是 py 版本更新以后包发生了变化,只需要改一下包名就行:

collections->collections.abc
  • 作者:旺 崽
  • 原文链接:https://zaizai.blog.csdn.net/article/details/107643924
    更新时间:2022-06-19 13:19:15