赞
踩
- from textblob import TextBlob
-
- # 输入一段文本
- text = "我今天很开心"
-
- # 创建TextBlob对象
- blob = TextBlob(text)
-
- # 计算情感极性
- sentiment = blob.sentiment.polarity
- print(blob.sentiment)
- # 输出情感极性
- if sentiment > 0:
- print("这段文字是积极的")
- elif sentiment == 0:
- print("这段文字是中性的")
- else:
- print("这段文字是消极的")
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。