借助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)]
相关用法
- Python os.dup()用法及代码示例
- Python set()用法及代码示例
- Python next()用法及代码示例
- Python os.unlink()用法及代码示例
- Python PyTorch cos()用法及代码示例
- Python Tensorflow abs()用法及代码示例
- Python os.rmdir()用法及代码示例
- Python os.makedirs()用法及代码示例
- Python Decimal exp()用法及代码示例
- Python range()用法及代码示例
- Python iter()用法及代码示例
注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 Python | TextBlob.Word.spellcheck() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。