python split special characters code example
Example: split string by special characters python
>>> "Banana Apple Pear Peach".split(" ")
['Banana', 'Apple', 'Pear', 'Peach']
>>> "Banana Apple Pear Peach".split(" ")
['Banana', 'Apple', 'Pear', 'Peach']