Split String par des caractères spéciaux Python

>>> "Banana Apple Pear Peach".split(" ")
['Banana', 'Apple', 'Pear', 'Peach']
expliked