I am running Aspect-Based-Sentiment-Analysis. And I get the output. I want to get this output as a string. I spent several hours in googling how to refer to the output and not only to see the output when I run a code. Maybe I don't comprehend something in Python basics and need huge support on that.
The code I am talking about is as follows:
absa.summary(money)
The output that i receive from this code:
Sentiment.positive for "money"
Scores (neutral/negative/positive): [0.001 0.006 0.993]
None
I checked the type of this object and it says Nonetype:
type(absa.summary(money))
Sentiment.positive for "money"
Scores (neutral/negative/positive): [0.001 0.006 0.993]
NoneType
How can I extract the text from the output as a string? Any ideas? I will provide any additional info when it is needed.