Python实现单词拼写检查


Posted in Python onApril 25, 2015

这几天在翻旧代码时发现以前写的注释部分有很多单词拼写错误,这些单词错得不算离谱,应该可以用工具自动纠错绝大部分。用 Python 写个拼写检查脚本很容易,如果能很好利用 aspell/ispell 这些现成的小工具就更简单了。

要点

1、输入一个拼写错误的单词,调用 aspell -a 后得到一些候选正确单词,然后用距离编辑进一步?鹧〕龈??返拇省1热缭诵 aspell -a,输入 ‘hella' 后得到如下结果:
hell, Helli, hello, heal, Heall, he'll, hells, Heller, Ella, Hall, Hill, Hull, hall, heel, hill, hula, hull, Helga, Helsa, Bella, Della, Mella, Sella, fella, Halli, Hally, Hilly, Holli, Holly, hallo, hilly, holly, hullo, Hell's, hell's

2、什么是距离编辑(Edit-Distance,也叫 Levenshtein algorithm)呢?就是说给定一个单词,通过多次插入、删除、交换、替换单字符的操作后枚举出所有可能的正确拼写,比如输入 ‘hella',经过多次插入、删除、交换、替换单字符的操作后变成:
‘helkla', ‘hjlla', ‘hylla', ‘hellma', ‘khella', ‘iella', ‘helhla', ‘hellag', ‘hela', ‘vhella', ‘hhella', ‘hell', ‘heglla', ‘hvlla', ‘hellaa', ‘ghella', ‘hellar', ‘heslla', ‘lhella', ‘helpa', ‘hello', …

3、综合上面2个集合的结果,并且考虑到一些理论知识可以提高拼写检查的准确度,比如一般来说写错单词都是无意的或者误打,完全错的单词可能性很小,而且单词的第一个字母一般不会拼错。所以可以在上面集合里去掉第一个字母不符合的单词,比如:'Sella', ‘Mella', khella', ‘iella' 等,这里 VPSee 不删除单词,而把这些单词从队列里取出来放到队列最后(优先级降低),所以实在匹配不了以 h 开头的单词才去匹配那些以其他字母开头的单词。

4、程序中用到了外部工具 aspell,如何在 Python 里捕捉外部程序的输入和输出以便在 Python 程序里处理这些输入和输出呢?Python 2.4 以后引入了 subprocess 模块,可以用 subprocess.Popen 来处理。

5、Google 大牛 Peter Norvig 写了一篇 How to Write a Spelling Corrector 很值得一看,大牛就是大牛,21行 Python 就解决拼写问题,而且还不用外部工具,只需要事先读入一个词典文件。本文程序的 edits1 函数就是从牛人家那里 copy 的。

代码

 

#!/usr/bin/python
# A simple spell checker

import os, sys, subprocess, signal

alphabet = 'abcdefghijklmnopqrstuvwxyz'

def found(word, args, cwd = None, shell = True):
  child = subprocess.Popen(args, 
    shell = shell, 
    stdin = subprocess.PIPE, 
    stdout = subprocess.PIPE, 
    cwd = cwd, 
    universal_newlines = True) 
  child.stdout.readline()
  (stdout, stderr) = child.communicate(word)
  if ": " in stdout:
    # remove \n\n
    stdout = stdout.rstrip("\n")
    # remove left part until :
    left, candidates = stdout.split(": ", 1) 
    candidates = candidates.split(", ")
    # making an error on the first letter of a word is less 
    # probable, so we remove those candidates and append them 
    # to the tail of queue, make them less priority
    for item in candidates:
      if item[0] != word[0]: 
        candidates.remove(item)
        candidates.append(item)
    return candidates
  else:
    return None

# copy from http://norvig.com/spell-correct.html
def edits1(word):
  n = len(word)
  return set([word[0:i]+word[i+1:] for i in range(n)] +           
    [word[0:i]+word[i+1]+word[i]+word[i+2:] for i in range(n-1)] +
    [word[0:i]+c+word[i+1:] for i in range(n) for c in alphabet] +
    [word[0:i]+c+word[i:] for i in range(n+1) for c in alphabet])

def correct(word):
  candidates1 = found(word, 'aspell -a')
  if not candidates1:
    print "no suggestion"
    return 

  candidates2 = edits1(word)
  candidates = []
  for word in candidates1:
    if word in candidates2:
      candidates.append(word)
  if not candidates:
    print "suggestion: %s" % candidates1[0]
  else:
    print "suggestion: %s" % max(candidates)

def signal_handler(signal, frame):
  sys.exit(0)

if __name__ == '__main__':
  signal.signal(signal.SIGINT, signal_handler)
  while True:
    input = raw_input()
    correct(input)

更简单的方法

当然直接在程序里调用相关模块最简单了,有个叫做 PyEnchant 的库支持拼写检查,安装 PyEnchant 和 Enchant 后就可以直接在 Python 程序里 import 了:

>>> import enchant
>>> d = enchant.Dict("en_US")
>>> d.check("Hello")
True
>>> d.check("Helo")
False
>>> d.suggest("Helo")
['He lo', 'He-lo', 'Hello', 'Helot', 'Help', 'Halo', 'Hell', 'Held', 'Helm', 'Hero', "He'll"]
>>>
Python 相关文章推荐
编写简单的Python程序来判断文本的语种
Apr 07 Python
解析Python中的生成器及其与迭代器的差异
Jun 20 Python
JSON Web Tokens的实现原理
Apr 02 Python
解决python升级引起的pip执行错误的问题
Jun 12 Python
Python get获取页面cookie代码实例
Sep 12 Python
使用Python制作简单的小程序IP查看器功能
Apr 16 Python
用django-allauth实现第三方登录的示例代码
Jun 24 Python
python re.sub()替换正则的匹配内容方法
Jul 22 Python
Pytorch加载部分预训练模型的参数实例
Aug 18 Python
Python基于内置库pytesseract实现图片验证码识别功能
Feb 24 Python
详解pycharm2020.1.1专业版安装指南(推荐)
Aug 07 Python
python实现数据结构中双向循环链表操作的示例
Oct 09 Python
在Debian下配置Python+Django+Nginx+uWSGI+MySQL的教程
Apr 25 #Python
使用PDB简单调试Python程序简明指南
Apr 25 #Python
Python脚本判断 Linux 是否运行在虚拟机上
Apr 25 #Python
在Python中使用cookielib和urllib2配合PyQuery抓取网页信息
Apr 25 #Python
使用Python的Tornado框架实现一个一对一聊天的程序
Apr 25 #Python
使用Python发送邮件附件以定时备份MySQL的教程
Apr 25 #Python
安装Python的web.py框架并从hello world开始编程
Apr 25 #Python
You might like
新版PHP将向Java靠拢
2006/10/09 PHP
基于php设计模式中单例模式的应用分析
2013/05/15 PHP
php警告Creating default object from empty value 问题的解决方法
2014/04/02 PHP
使用PHP函数scandir排除特定目录
2014/06/12 PHP
php常用字符串比较函数实例汇总
2014/11/24 PHP
PHP基于单例模式实现的mysql类
2016/01/09 PHP
PHP设计模式(六)桥连模式Bridge实例详解【结构型】
2020/05/02 PHP
JavaScript.Encode手动解码技巧
2010/07/14 Javascript
js RuntimeObject() 获取ie里面自定义函数或者属性的集合
2010/11/23 Javascript
jquery下checked取值问题的解决方法
2012/08/09 Javascript
js 判断一个元素是否在页面中存在
2012/12/27 Javascript
JavaScript中合并数组的N种方法
2014/09/16 Javascript
Node.js 的异步 IO 性能探讨
2014/10/08 Javascript
Immutable 在 JavaScript 中的应用
2016/05/02 Javascript
无循环 JavaScript(map、reduce、filter和find)
2017/04/08 Javascript
浅谈sass在vue注意的地方
2017/08/10 Javascript
在vue中使用axios实现post方式获取二进制流下载文件(实例代码)
2019/12/16 Javascript
js实现鼠标拖拽div左右滑动
2020/01/15 Javascript
详解Vue的组件中data选项为什么必须是函数
2020/08/17 Javascript
如何处理Python3.4 使用pymssql 乱码问题
2016/01/08 Python
Python3.5编程实现修改IIS WEB.CONFIG的方法示例
2017/08/18 Python
python的dataframe和matrix的互换方法
2018/04/11 Python
python实现简单文件读写函数
2021/02/25 Python
美国最古老的精致书写工具制造商:A.T. Cross(高仕)
2018/01/30 全球购物
简历中个人求职的自我评价模板
2013/11/29 职场文书
善意的谎言事例
2014/02/15 职场文书
优秀公益广告词大全
2014/03/19 职场文书
读书活动总结
2014/04/28 职场文书
动画设计系毕业生求职信
2014/07/15 职场文书
解除劳动关系协议书2篇
2014/11/28 职场文书
作文评语集锦
2014/12/25 职场文书
先进班集体申报材料
2014/12/26 职场文书
公司聚餐通知
2015/04/22 职场文书
2015年“世界无车日”活动方案
2015/05/06 职场文书
元素水平垂直居中的方式
2021/03/31 HTML / CSS
JavaScript中的宏任务和微任务详情
2021/11/27 Javascript