Getting wrong value
Author: Mank0oCreated Dec 13, 2022Updated Dec 13, 2022
from textblob import TextBlob
text = "Hi, I'm from Canada"
text2 = TextBlob(text)
Correct = text2.correct()
print(Correct)Hi when I run the above code I get
output
I, I"m from Canada
which is wrong, am I doing something wrong here? please help
Source: sloria/TextBlob