欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python运行代码不显示warning输出

程序员文章站 2022-05-25 16:09:50
...

两种方法可以在python运行代码的时候不显示warning输出

方法1:

import warnings
warnings.filterwarnings('ignore')

方法2:

python -W ignore run.py

 参考:https://blog.csdn.net/u014090429/article/details/102500661

相关标签: python python