去掉python的警告

Posted nxf_rabbit75

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了去掉python的警告相关的知识,希望对你有一定的参考价值。

1.常规警告
import warnings
warnings.filterwarnings("ignore")

 

2.安装gensim,在python中导入的时候出现一个警告:

warnings.warn("detected Windows; aliasing chunkize to chunkize_serial")
UserWarning: detected Windows; aliasing chunkize to chunkize_serial

解决方法:输入下面两条语句即可:

import warnings
warnings.filterwarnings(action=‘ignore‘,category=UserWarning,module=‘gensim‘)

  

以上是关于去掉python的警告的主要内容,如果未能解决你的问题,请参考以下文章

Python中的弃用警告,在这里有意义吗?

怎么去掉Xcodeproject中的某种类型的警告 Implicit conversion loses integer precision: 'NSInteger' (

去掉VS中的警告错误:warning C4819

怎么去掉Xcode工程中的某种类型的警告 Implicit conversion loses integer precision: 'NSInteger' (aka 'long

Xcode8:"subsystem: com.apple.UIKit, category: HIDEventFiltered, enable_level: 0" 的警告(代码片段

maven打包日志输出优化-去掉泛型与过时的警告