I think what I want to do is a fairly common task but I\'ve found no reference on the web. I have text with punctuation, and I want a list of the words.
\"H
I'm re-acquainting myself with Python and needed the same thing. The findall solution may be better, but I came up with this:
tokens = [x.strip() for x in data.split(',')]