We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 548bfb7 commit bacbe47Copy full SHA for bacbe47
language/sentiment/sentiment_analysis.py
@@ -39,7 +39,8 @@ def main(movie_review_filename):
39
polarity = response['documentSentiment']['polarity']
40
magnitude = response['documentSentiment']['magnitude']
41
42
- print('Sentiment: polarity of {} with magnitude of {}'.format(polarity, magnitude))
+ print('Sentiment: polarity of {} with magnitude of {}'.format(
43
+ polarity, magnitude))
44
return 0
45
46
0 commit comments