hunspell-ms/tests/test_suggest_words.py
2024-08-30 09:17:21 +05:30

10 lines
211 B
Python

#!/usr/bin/python3
import enchant
wdlst = [ "Hello", "teh", "pagi"]
dic = enchant.Dict("ms_MY")
for wd in wdlst:
dic.check(wd)
print("input word = {0}, Suggestions => {1}".format(wd, dic.suggest(wd)))