我如何使用 nltk 或 python 删除或更正 excel 文件或文本文件中的拼写错误

How can i remove or correct the spelling mistakes in excel file or text file using nltk or python

实际上我有一个 excel 文件,我必须更正该文件每一列中单词的拼写。 我还有一个制表符分隔的文件,我也想纠正他们的咒语。 Gramerly 校正。

您可以使用 autocorrect 库来执行此操作。

from autocorrect import spell 
print spell(u'luve')
print spell(u'hvte')

输出:

love
hate