I was wondering how to implement a function get_words() that returns the words in a string in a list, stripping away the punctuation.
get_words()
How I would like t
All you need is a tokenizer. Have a look at nltk and especially at WordPunctTokenizer.