实际上我有一个excel文件,我必须更正该文件每列中单词的拼写。 我还有一个制表符分隔文件,我也想纠正他们的法术。格拉梅尔校正。
答案 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')