- python开发中经常遇到warning的情况,但是warning通常并不影响程序的运行,而且有时并不想看到其输出,下面我们来说下如何忽略warning。
import warnings
warnings.filterwarnings("ignore")
- 这样就忽略了警告错误的输出。
import warnings
warnings.filterwarnings("ignore")
本文标题:Python3:忽略警告
本文链接:https://www.haomeiwen.com/subject/bikevftx.html
网友评论