Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 python 中编写一个自动完成程序,该程序需要一个(可能拼写错误的)单词,并根据字典找到可能的部分匹配项。具体来说,我正在寻找具有多一个、少一个或一个不同字符的单词。有没有办法在 python 中做到这一点,而无需根据输入单词编写正则表达式字符串生成器?比如,我可以编写三个通用的正则表达式字符串,还是必须编写一个函数来创建和测试在单词的每个位置都带有通配符的单独的正则表达式字符串?