Я использую Python для назначения меток результатам, возвращенным из TextBlob.Мой очень простой код выглядит так:
from textblob import TextBlob
def sentLabel(blob):
label = blob.sentiment.polarity
if(label == 0.0):
print('Neutral')
elif(label > 0.0):
print('Positive')
else:
print('Negative')
Feedback1 = "The food in the canteen was awesome"
Feedback2 = "The food in the canteen was awful"
Feedback3 = "The canteen has food"
b1 = TextBlob(Feedback1)
b2 = TextBlob(Feedback2)
b3 = TextBlob(Feedback3)
print(b1.sentiment_assessments)
print(sentLabel(b1))
print(b2.sentiment_assessments)
print(sentLabel(b2))
print(b3.sentiment_assessments)
print(sentLabel(b3))
Это правильно выводит на экран настроение, но также выводит "None", как показано ниже:
Sentiment(polarity=1.0, subjectivity=1.0, assessments=[(['awesome'], 1.0, 1.0, None)])
Positive
None
...
Есть ли способ подавления"Нет" из-за печати?
Спасибо за любую помощь или указатели.