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

时间:2018-06-02 12:36:57

标签: python excel python-3.x nltk spell-checking

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

1 个答案:

答案 0 :(得分:0)

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

import sys
import numpy as np

def read_file(filename):
    """
    Your file will need to extract numbers from an array and 
    """
    list_of_numbers = []
    file = open(sys.argv[1]).readline()
    for number in file:
        list_of_numbers.append(number)

print(list_of_numbers)

输出:

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