hunspell-eo/tests/test_suggest_words.py
2025-05-04 16:53:39 +00:00

9 lines
217 B
Python

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