当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python TextBlob.Word.spellcheck()用法及代码示例


借助TextBlob.Word.spellcheck()方法,我们可以检查该单词是否存在拼写错误TextBlob.Word.spellcheck()方法。

用法: TextBlob.Word.spellcheck()
返回:Return the word with correctness accuracy.

范例1:
在这个例子中,我们可以说TextBlob.Word.spellcheck()方法,我们能够获得单词weather的准确性,无论它是否正确。


# import Word 
from textblob import Word 
  
gfg = Word("Facility") 
  
# using Word.spellcheck() method 
print(gfg.spellcheck())

输出:

[(‘Facility’, 1.0)]

范例2:

# import Word 
from textblob import Word 
  
gfg = Word("Prediction") 
  
# using Word.spellcheck() method 
print(gfg.spellcheck())

输出:

[(‘Prediction’, 1.0)]



相关用法


注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 Python | TextBlob.Word.spellcheck() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。