SyntaxFix
Write A Post
Hire A Developer
Questions
I just used the following code, which removed all the punctuation:
tokens = nltk.wordpunct_tokenize(raw) type(tokens) text = nltk.Text(tokens) type(text) words = [w.lower() for w in text if w.isalpha()]