Python преобразует строку в список слов

>>> "Please split this string".split()
['Please', 'split', 'this', 'string']
Kodi4444