10 lines
218 B
Python
10 lines
218 B
Python
|
#!/usr/bin/python3
|
||
|
|
||
|
import enchant
|
||
|
|
||
|
wdlst = [ "Pēšņi", "Padies", "Sviki"]
|
||
|
dic = enchant.Dict("lv_LV")
|
||
|
for wd in wdlst:
|
||
|
dic.check(wd)
|
||
|
print("input word = {0}, Suggestions => {1}".format(wd, dic.suggest(wd)))
|