Created
March 1, 2019 13:48
-
-
Save tshrinivasan/ade5c20db3693f5e47bc0dd4be859c9c to your computer and use it in GitHub Desktop.
வேர்ச்சொல்_வடிகட்டி.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from tamilstemmer import TamilStemmer | |
wordlist = [u'மலைகள்',u'பாடுதல்',u'ஓடினான்'] | |
#expected = [u'மலை',u'பாடு', u'ஓடி'] | |
ta_stemmer = TamilStemer() | |
for word in wordlist: | |
ta_stemmer.stemWord(word) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment