Python convertit une chaîne en une liste de mots

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