I have a string like this =
str = (((MY (NAME IS) IS) YOUR NAME)
I want to split all the values in this string to get a result like this:
lst = ['(', '(', '(', 'MY', '(', 'NAME', 'IS', ')', 'IS', ')', 'YOUR', 'NAME', ')']
Is it possible to split the string like this with more than one delimiter?