我有一个数据格式:
alertname custname
0 wlison wilson
1 dais said
2 4dams adams
3 ad4ms adams
4 ad48s adams
5 smyth smith
6 smythe smith
7 gillan gillan
8 gilen gillan
9 scott-smith scottsmith
10 scott smith scottsmith
11 perrson person
12 persson person现在,当我从fuzzywuzzy包运行以下命令时:
from fuzzywuzzy import process
from fuzzywuzzy import fuzz
import Levenshtein
key=['wilson']
process.extractone(key, choices=alertname,scorer=fuzz.token_sort_ratio,limit=10)它给出了以下错误:
AttributeError: 'module' object has no attribute 'extractone'
发布于 2018-05-21 10:32:39
它的
process.extractOne(key, choices=alertname,scorer=fuzz.token_sort_ratio,limit=10)你错过了
https://stackoverflow.com/questions/50446892
复制相似问题