从网上整理了一下Python忽略warning警告错误
方法一:直接运行脚本的时候加入参数
python -W ignore yourscript.py
方法二:代码中加入参数
import warnings
with warnings.catch_warnings():
warnings.filterwarnings("ignore",category=DeprecationWarning)
import pymssql #需忽略警告的模块
yourcode()
原文地址:http://blog.51cto.com/wcc127/2300570
时间: 2024-11-06 07:23:47