I have a list of verbs:
words_list =['do','does','did','was'...............]
I want to get a new list of verbs including all the negative of the above words. For example:
negative_words = ["don't","doesn't","didn't","wasn't",.........]
Is there any technique in NLTK to do this?