Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions textblob.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,8 @@
Sentiment(polarity=0.8, subjectivity=1.0)

>>> from textblob import TextBlob
>>> b = textBlob('i am not happy')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'textBlob' is not defined
b = textBlob('i am not happy')
print(b,"chnges"
>>> b = TextBlob('i am not happy')
>>> b
TextBlob("i am not happy")
Expand Down