How can I split by 1 or more occurrences of a delimiter in Python? May 14, 2023 by Tarik Just do not give any delimeter? >>> a="test result" >>> a.split() ['test', 'result']