I want to remove these long integer from my solution, please suggest something.
for example when I ran this :
sa = graphlab.SArray(["The quick brown fox jumps."])
graphlab.text_analytics.count_words(sa)
my output was:
dtype: dict
Rows: 1
[{'quick': 1L, 'brown': 1L, 'the': 1L, 'fox': 1L, 'jumps.': 1L}]
I don't understand why I am getting output like this with a L added to the value of the keys.