Python | TextBlob.Word.spellcheck() method
Last Updated :
26 Jul, 2022
Improve
With the help of
Python3 1=1
Output :
Python3 1=1
Output :
TextBlob.Word.spellcheck()
method, we can check the word if that word have spelling mistake by using TextBlob.Word.spellcheck()
method.
Syntax : TextBlob.Word.spellcheck()
Return : Return the word with correctness accuracy.
Example #1 :
In this example we can say that by using TextBlob.Word.spellcheck()
method, we are able to get the accuracy of word whether it is correct or not.
# import Word
from textblob import Word
gfg = Word("Facility")
# using Word.spellcheck() method
print(gfg.spellcheck())
[('Facility', 1.0)]Example #2 :
# import Word
from textblob import Word
gfg = Word("Prediction")
# using Word.spellcheck() method
print(gfg.spellcheck())
[('Prediction', 1.0)]