>>> 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
Retrieved from http://hyacinth.byus.net/moniwiki/wiki.php/Python/문자열 구분자 Split 및 순회
last modified 2019-02-17 00:45:30