In Pyspark, when I try to print a list, I get all the elements printed in the same line :
>>> wordslist = words.collect();
>>> wordslist
[(u'crazy', 1), (u'fox', 1), (u'jumped', 1)]
Is there any way I could get the output printed one item per line, like this :
>>> wordslist
[
(u'crazy', 1),
(u'fox', 1),
(u'jumped', 1)
]