OCR-Translator / SpllingChecker.py
Sarath0x8f's picture
Upload 9 files
d69917c verified
raw
history blame
155 Bytes
from textblob import TextBlob
s = "i m lve in wth you"
print("original text: "+str(s))
b = TextBlob(s)
print("corrected text: "+str(b.correct()))