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()))
pip install textblob
# 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()))
For further actions, you may consider blocking this person and/or reporting abuse
Rafael de Oliveira Marques -
Dhiraj Sharma -
Lotfi -
thinhda -
Top comments (0)