1. 程式人生 > >Python忽略warning警告錯誤

Python忽略warning警告錯誤

port rec warnings .py ngs lte category cati strong

從網上整理了一下Python忽略warning警告錯誤

方法一:直接運行腳本的時候加入參數

python -W ignore yourscript.py

方法二:代碼中加入參數

import warnings

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

yourcode()

Python忽略warning警告錯誤