Python忽略warning警告错误

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python忽略warning警告错误相关的知识,希望对你有一定的参考价值。

从网上整理了一下Python忽略warning警告错误

方法一:直接运行脚本的时候加入参数

python -W ignore yourscript.py

方法二:代码中加入参数

import warnings

with warnings.catch_warnings():
    warnings.filterwarnings("ignore",category=DeprecationWarning)
    import pymssql        #需忽略警告的模块

yourcode()

以上是关于Python忽略warning警告错误的主要内容,如果未能解决你的问题,请参考以下文章

Python 忽略warning警告错误 + 跳过报错继续执行程序

错误:警告:忽略匿名内部类的 InnerClasses 属性

Item 53:注意编译警告

Item 53:注意编译警告

编译器处理警告错误 #pragma GCC diagnostic ignored "-Wunused"

Illegal instruction错误的定位---忽略编译期警告的代价