Discuss / Python / from collections import Iterable 报警告“Using or importing the ABCs from 'collections' instead of ……”

from collections import Iterable 报警告“Using or importing the ABCs from 'collections' instead of ……”

Topic source

如果报警告

Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working

请将导入语句改为如下即可

from collections.abc import Iterable

从collections中导入ABCs已被弃用,并在python3.8中将停止工作,可使用collections.abc代替它进行使用


  • 1

Reply