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.
Asked
Active
Viewed 162 times
1 Answers
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