#keywords Python, split, string {{{#!python >>> 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’] }}} {{{#!python >>> for word in words: >>> print (word) }}} ---- {{{ This is random text we're going to split apart }}}