Python mengonversi string ke daftar kata

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