I\'m trying to find the most pythonic way to split a string like
\"some words in a string\"
into single words. string.split(\' \')
string.split(\' \')
text = "".join([w and w+" " for w in text.split(" ")])
converts large spaces into single spaces