标签: python python-2.7 nltk
使用Python NLTK模块,我想将develop转换为developing。
develop
developing
>>> nltk.stem.WordNetLemmatizer().lemmatize('loving', 'v') u'love'
这段代码与我想要实现的完全相反。