pyenchant建议数字

时间:2016-03-03 18:02:08

标签: pyenchant

这似乎是错误的建议:

>>> f= enchant.request_dict("en_US")
>>> f.check('50')
False
>>> f.suggest('50')
['W', 'Y', 'w', 'y', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'X', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'x', 'z']

在谈到数字时,我还能改进建议吗?

1 个答案:

答案 0 :(得分:0)

您可以将您的基础提供商更改为myspell,这将为您提供不同的结果。在这些数字的情况下,它会给你更好的结果,例如

import enchant
b = enchant.Broker()
b.set_ordering("en_US","myspell,aspell")
print b.describe()
d=b.request_dict("en_US")
print d.provider
s = '50'
print d.suggest(s)

会给你:

[<Enchant: Aspell Provider>, <Enchant: Ispell Provider>, <Enchant: Myspell Provider>, <Enchant: Hspell Provider>]
<Enchant: Myspell Provider>
['5', '0', '50s']

你需要安装Myspell和你需要的Myspell词典。