Open In App

Python | TextBlob.sentiment() method

Last Updated : 09 Sep, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

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.




# import TextBlob
from textblob import TextBlob
  
gfg = TextBlob("GFG is a good company and always value their employees.")
  
# using TextBlob.sentiment method
gfg = gfg.sentiment
  
print(gfg)


Output :

Sentiment(polarity=0.7, subjectivity=0.6000000000000001)

Example #2 :




# import TextBlob
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.")
  
# using TextBlob.sentiment method
gfg = gfg.sentiment
  
print(gfg)


Output :

Sentiment(polarity=0.5, subjectivity=0.5)


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads