回答編集履歴
1
追記
test
CHANGED
@@ -19,3 +19,39 @@
|
|
19
19
|
print("なんとも言えん")
|
20
20
|
|
21
21
|
```
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
**追記**
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
scoreが0以上の個数を数えたいなら、個数を数える変数を用意して、ifの中で増やしていけばいいです。
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
```python
|
34
|
+
|
35
|
+
n = 0
|
36
|
+
|
37
|
+
for i in text_normalize():
|
38
|
+
|
39
|
+
sia = SentimentIntensityAnalyzer()
|
40
|
+
|
41
|
+
score = sia.polarity_scores(i)["neg"] - sia.polarity_scores(i)["pos"]
|
42
|
+
|
43
|
+
if score >= 0.0:
|
44
|
+
|
45
|
+
print(i)
|
46
|
+
|
47
|
+
n += 1
|
48
|
+
|
49
|
+
else:
|
50
|
+
|
51
|
+
print("なんとも言えん")
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
print('score >= 0 の個数:', n)
|
56
|
+
|
57
|
+
```
|