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