gpt4 book ai didi

python - 如果有警告如何停止程序

转载 作者:太空狗 更新时间:2023-10-29 22:26:24 25 4
gpt4 key购买 nike

我尝试用nltk做一些文字处理,但是有一个警告。我发现如果有像“Nations�”这样的词,程序会发出警告。我想知道在发出警告后是否有任何方法可以停止程序。谢谢

警告:

*UnicodeWarning: Unicode equal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
if word[0].lower() not in stopwords.words():*

最佳答案

警告是非 fatal error 。出了点问题,但程序可以继续。

它们可以用标准库模块处理 warnings或者通过命令行,传递标志 -Werror。以编程方式:

import warnings

with warnings.catch_warnings():
warnings.simplefilter('error')
function_raising_warning()

关于python - 如果有警告如何停止程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23353093/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com