下面来说一下如何忽略这些警告。
python -W ignore yourscript.py
import warnings def fxn(): warnings.warn("deprecated", DeprecationWarning) with warnings.catch_warnings(): warnings.simplefilter("ignore") fxn()
如果不想使用以上方法,可以直接在python源代码中的开始添加如下代码:
import warnings warnings.filterwarnings("ignore")
这样就可以忽略python报警告性错误啦
声明:本网页内容旨在传播知识,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。TEL:177 7030 7066 E-MAIL:11247931@qq.com