📜  Python| TextBlob.sentiment() 方法

📅  最后修改于: 2022-05-13 01:55:02.869000             🧑  作者: Mango

Python| TextBlob.sentiment() 方法

借助TextBlob.sentiment()方法,我们可以通过TextBlob.sentiment()方法获取句子的情感。

示例 #1:
在这个例子中,我们可以说通过使用TextBlob.sentiment()方法,我们能够得到一个句子的情绪。

# 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)

输出 :

示例 #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)

输出 :