Created
January 18, 2019 05:54
-
-
Save MLWhiz/e4e8a2ff13afe965cc17e39c7b488088 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from textblob import TextBlob | |
word_sent = TextBlob("good").sentiment | |
print(word_sent.polarity,word_sent.subjectivity) | |
# 0.7 0.6 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment