1. 首页
  2. 数据库
  3. 其它
  4. 基于Python的拼写检查器(附详细代码和注释)

基于Python的拼写检查器(附详细代码和注释)

上传者: 2020-12-25 10:36:09上传 PDF文件 24.2KB 热度 5次
数据: https://github.com/w1449550206/Spelling-checker-based-on-Python 代码: import re, collections #查找每一个单词,返回一个列表 def words(text): return re.findall('[a-z]+', text.lower()) def train(features): #为字典提供默认的值 model = collections.defaultdict(lambda: 1) for f in features: #将每一个单词都转变为键 默认
用户评论