string to list of words python code example
Example: python convert a string to a list of words
>>> "Please split this string".split()
['Please', 'split', 'this', 'string']
>>> "Please split this string".split()
['Please', 'split', 'this', 'string']