>>> words = “This is random text we’re going to split apart”
>>> words2 = words.split(“ “)
>>> words2
[‘This’, ‘is’, ‘random’, ‘text’, ‘we’re’, ‘going’, ‘to’, ‘split’, ‘apart’]
>>> for word in words:
>>> print (word)
This
is
random
text
we're
going
to
split
apart