如果使用pyenchant的输入是英语单词而不是不是英语单词,那么如何打印语句?

时间:2017-10-07 17:46:36

标签: python conditional-statements pyenchant

我正在使用pyenchant检查输入是否是英文单词。我想显示一条消息"It is a real word"如果是,"It's not a real word"如果不是。我知道我必须使用d.check,但我如何设置真假的条件

1 个答案:

答案 0 :(得分:0)

你可以试试这个。 check函数返回一个布尔值,您可以将其放入if语句中:

import enchant
d = enchant.Dict("en_US")   # create dictionary for US English
if d.check("enchant"):      # or any word
    print("It is a real word" )
else:
    print("Its not a real word")