sloria / TextBlob

Simple, Pythonic, text processing--Sentiment analysis, part-of-speech tagging, noun phrase extraction, translation, and more.
https://textblob.readthedocs.io/
MIT License
9.02k stars 1.13k forks source link

Getting wrong value #414

Open Mank0o opened 1 year ago

Mank0o commented 1 year ago
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