pycharm报错DeprecationWarning

DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3......

from collections import namedtuple, Mapping

改为

from collections import namedtuple
from collections.abc import Mapping

 

pycharm报错DeprecationWarning_第1张图片

 

你可能感兴趣的:(pycharm,ide,python)