Python 拼写检查
拼写检查是任何文本处理或分析的基本要求。Python包 pyspellchecker 提供了这个功能,可以找出可能拼写错误的单词并提供可能的更正建议。
首先,我们需要使用以下命令在Python环境中安装所需的包。
pip install pyspellchecker
现在我们看下面的包如何用来指出拼写错误的单词,并对可能正确的单词提出一些建议。
from spellchecker import SpellChecker
spell = SpellChecker()
# find those words that may be misspelled
misspelled = spell.unknown(['let', 'us', 'wlak','on','the','groun'])
for word in misspelled:
# Get the one `most likely` answer
print(spell.correction(word))
# Get a list of `likely` options
print(spell.candidates(word))
当我们运行上述程序时,我们得到以下输出:−
group
{'group', 'ground', 'groan', 'grout', 'grown', 'groin'}
walk
{'flak', 'weak', 'walk'}
大小写敏感
如果我们使用Let而不是let,则这将成为单词与字典中最接近匹配单词的大小写敏感比较,结果现在看起来不同了。
from spellchecker import SpellChecker
spell = SpellChecker()
# find those words that may be misspelled
misspelled = spell.unknown(['Let', 'us', 'wlak','on','the','groun'])
for word in misspelled:
# Get the one `most likely` answer
print(spell.correction(word))
# Get a list of `likely` options
print(spell.candidates(word))
当我们运行上面的程序时,我们得到以下输出 –
group
{'groin', 'ground', 'groan', 'group', 'grown', 'grout'}
walk
{'walk', 'flak', 'weak'}
get
{'aet', 'ret', 'get', 'cet', 'bet', 'vet', 'pet', 'wet', 'let', 'yet', 'det', 'het', 'set', 'et', 'jet', 'tet', 'met', 'fet', 'net'}