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
using maketrans and translate you can do it easily and neatly
import string specials = ',.!?:;"()<>[]#$=-/' trans = string.maketrans(specials, ' '*len(specials)) body = body.translate(trans) words = body.strip().split()