python實現查詢糾錯
python實現查詢糾錯的方法:
方法一:
1、輸入一個拼寫錯誤的單詞,呼叫 aspell -a 後得到一些候選正確單詞,然後用距離編輯進一步嗮選出更精確的詞。比如執行 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 來處理。
實現程式碼:
#!/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 nn 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 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知識請關注欄目。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/506/viewspace-2833943/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Access查詢實現Mysql的 limit 查詢MySqlMIT
- Python實現天氣查詢功能(外加Excel技巧)PythonExcel
- python 程式碼實現查詢功能介面測試Python
- java實現折半查詢。Java
- 查詢演算法集:順序查詢、二分查詢、插值查詢、動態查詢(陣列實現、連結串列實現)演算法陣列
- 關於join查詢的那麼點糾結
- 語法糾錯的研究現狀
- 【python】百度關鍵詞排名查詢實現Python
- 利用 Python 爬蟲實現快遞物流資訊查詢Python爬蟲
- SSH:hiberate實現資料的查詢(單查詢和全查詢)
- java 實現中英文拼寫檢查和錯誤糾正?可我只會寫 CRUD 啊!Java
- indexdb實現分頁查詢Index
- mysql多表查詢如何實現MySql
- 折半查詢(C++實現)C++
- mysql實現隨機查詢MySql隨機
- Laravel Query Builder 複雜查詢案例:子查詢實現分割槽查詢 partition byLaravelUI
- 如何實現查詢介面的所有實現類
- 查詢外部表出現KUP-4040錯誤
- Python查詢-二分查詢Python
- PHP 實現二分查詢PHP
- 實現 MyBatis 流式查詢的方法MyBatis
- [Hive]Hive實現抽樣查詢Hive
- jeefast實現科目成績查詢AST
- Elasticsearch 查詢in 和 not in 的實現方式Elasticsearch
- 正確的折半查詢實現
- 七、Qt Creator實現文字查詢QT
- 使用SQL實現特殊查詢(1)SQL
- 查詢賬單功能的實現
- 軟體糾錯
- BST查詢結構與折半查詢方法的實現與實驗比較
- HTML + CSS + JS 利用郵編查詢 API 實現郵編查詢工具HTMLCSSJSAPI
- 如何實現引數級聯查詢
- Js實現二分查詢,加油JS
- c++字串查詢函式實現C++字串函式
- Golang實現二分查詢法Golang
- c# winform 實現分頁查詢C#ORM
- 二分查詢(函式實現)函式
- 如何實現模糊查詢時間段