hunspell-ne/tests/scripts/test_suggest_words.py
Petr Šabata 4a28f5c44e RHEL 9.0.0 Alpha bootstrap
The content of this branch was automatically imported from Fedora ELN
with the following as its source:
https://src.fedoraproject.org/rpms/hunspell-ne#8c8abbd504b0d60e29f30585577f9faa78cbb09f
2020-10-15 12:57:07 +02:00

10 lines
229 B
Python

#!/usr/bin/python3
import enchant
wdlst = [ "नमस", "अभि", "यथात"]
dic = enchant.Dict("ne_NP")
for wd in wdlst:
dic.check(wd)
print("input word = {0}, Suggestions => {1}".format(wd, dic.suggest(wd)))