Fuzzy-String-Ratio
Sat 17 May 2025
title: "Fuzzy String Ratio" author: "Rj" date: 2019-04-20 description: "-" type: technical_note draft: false
from fuzzywuzzy import fuzz
print(fuzz.ratio("this is a test", "this is a test!"))
97
print(fuzz.ratio("this is a cup", "this is a world cup"))
81
Score: 0
Category: basics