属性错误:模块"警告"没有属性"过滤器警告"



代码在开头导入'warning'库,相关代码如下:

import warnings
warnings.filterswarnings('ignore')

当我运行代码时,出现了一个错误

AttributeError: module 'warnings' has no attribute 'filterswarnings'

之后,我选择pip install warnings来克服这个问题,然后出现

ERROR: Could not find a version that satisfies the requirement warnings (from versions: none)
ERROR: No matching distribution found for warnings 

现在,我仍然没有克服这个问题。我怎样才能克服这个问题?

这很简单。filterswarnings无效。正如你在文档中看到的,filterwarnings是正确的形式。你需要的是

warnings.filterwarnings('ignore')

pip install warnings也不工作。因为warnings是一个内置库。你不能使用pip安装内置库。

相关内容

  • 没有找到相关文章

最新更新