Python ISRIStemmer for Arabic text
问题 I am running the following code on IDLE(Python) and I want to enter Arabic string and get the stemming for it but actually it doesn't work ">>> from nltk.stem.isri import ISRIStemmer ">>> st = ISRIStemmer() ">>> w= 'حركات' ">>> join = w.decode('Windows-1256') ">>> print st.stem(join).encode('Windows-1256').decode('utf-8') The result of running it is the same text in w which is 'حركات' which is not the stem but when do the following: ">>> print st.stem(u'اعلاميون') the result succeeded and