split string by special characters python

Solutions on MaxInterview for split string by special characters python by the best coders in the world

showing results for - "split string by special characters python"
Dashawn
08 Feb 2020
1>>> "Banana Apple Pear Peach".split(" ")
2['Banana', 'Apple', 'Pear', 'Peach']