I Made Spelling Checker in Python
Arpit
Posted on July 14, 2020
Using textblob module
Installation
pip install textblob
code
# using textblob
from textblob import TextBlob
a = "comuter progrming is gret"
print("original text: "+str(a))
b = TextBlob(a)
print("corrected text: "+str(b.correct()))
output
see second method here
💖 💪 🙅 🚩
Arpit
Posted on July 14, 2020
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.