With the help of TextBlob.sentiment()
method, we can get the sentiments of the sentences by using TextBlob.sentiment()
method.
Syntax : TextBlob.sentiment()
Return : Return the tuple of sentiments.
Example #1 :
In this example we can say that by using TextBlob.sentiment()
method, we are able to get the sentiments of a sentence.
from textblob import TextBlob
gfg = TextBlob( "GFG is a good company and always value their employees." )
gfg = gfg.sentiment
print (gfg)
|
Output :
Sentiment(polarity=0.7, subjectivity=0.6000000000000001)
Example #2 :
from textblob import TextBlob
gfg = TextBlob( "Sandeep Jain An IIT Roorkee alumnus and founder of GeeksforGeeks. He loves to solve programming problems in most efficient ways." )
gfg = gfg.sentiment
print (gfg)
|
Output :
Sentiment(polarity=0.5, subjectivity=0.5)