split string dengan karakter khusus python

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