python库:fuzzywuzzy

fuzzywuzzy

用于字符串匹配率、令牌匹配等

 

复制代码代码如下:

from fuzzywuzzy import fuzz
fuzz.ratio("Hit me with your best shot", "Hit me with your pet shark")
# 85

你可能感兴趣的:(python库:fuzzywuzzy)