向PyEnchant字典添加特定单词

时间:2018-02-06 09:50:46

标签: python dictionary spell-checking pyenchant

我不想向PyEnchant添加新词典,而是想在词典中添加单词,并提供如何纠正它们的建议。例如,我有代码

import enchant
enchantdict = enchant.Dict("de_GE")
suggested_words = [enchantdict.suggest(word) for word in ['Kunden','Nr','201']]

其中“Nr”是说“Nummer”(英文中的“数字”)的简短方式。我想在PyEnchant字典中添加这样的内容,它可以在看到“Nr”时建议“Nummer”。我怎么能这样做?

1 个答案:

答案 0 :(得分:1)

看来你正在寻找enchantdict.store_replacement('Nr', 'Nummer')。它在documentation中解释过,并不难找到。