I have a formatted string from a log file, which looks like:
>>> a=\"test result\"
That is, the test an
Just do not give any delimeter?
>>> a="test result" >>> a.split() ['test', 'result']