spell.py 文件源码

python
阅读 21 收藏 0 点赞 0 评论 0

项目:bay 作者: eventbrite 项目源码 文件源码
def spell_correct(input, choices, threshold=0.6):
        """
        Find a possible spelling correction for a given input.
        """
        guesses = difflib.get_close_matches(input, choices, 1, cutoff=threshold)
        return next(iter(guesses), None)
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号