for Loop over a list fuzzy match printing out match score thanks in advance
question about a fuzzy match. Here is function trying to write def fuzz(x, keys): for i in keys: a = fuzz.ratio(x, keys) return dataset[‘match’] = dataset.col1.apply(fuzz, word=[‘apple’, ‘orange’, ‘banana’]) how to for loop(or other solution) over a list and append matching scores to dataset? expected output col1 match banana 100 appl 80 oranges 90 ba… Read More for Loop over a list fuzzy match printing out match score thanks in advance