-1

Actually i have a excel file and i have to correct the spelling of words in each column of that file. I have also a tab delimited file i want also correct theirs spells. Gramerly correction.

U13-Forward
  • 69,221
  • 14
  • 89
  • 114
A.B
  • 3
  • 1

1 Answers1

0

You can use autocorrect library to do so.

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

Output:

love
hate
Vizag
  • 743
  • 1
  • 7
  • 30