Spaces:
Running
Running
File size: 155 Bytes
d69917c |
1 2 3 4 5 6 7 8 |
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())) |