For each item in a list of words, if it contains punctuation, strip it off
import string listOfWords = [''.join(c for c in s if c not in string.punctuation) for s in listOfWords]