FuzzyWozzy没有属性“extractone”

2024-09-24 04:24:42 发布

您现在位置:Python中文网/ 问答频道 /正文

我有一个数据帧:

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'


Tags: keyfromimportprocessscottpersonsmithfuzz