I'm trying to find a means of getting roots of words where didn't/hadn't end up being classified as the same word (maybe "not"). Considering that lemmatizing/stemming/wordnet-finding-synonyms, wordnet-finding-hypernyms/hyponyms hasn't worked Im wondering if there is in fact a way to do this in Python.
Example of requested output
def get_root(word): #some code return root get_root("hadnt") == get_root("didnt") >> True
Thanks
2.1m questions
2.1m answers
60 comments
57.0k users