Query = "boy"
Sentence1 = "boycott them"
Sentence2 = "It's a boy"
fuzz.partial_ratio(Query, Sentence1)
>> 100.0
fuzz.partial_ratio(Query, Sentence2)
>> 100.0
@maxbachmann Is it possible to know an exact match (Sentence2) different from a partial match (Sentence1) while using fuzz.partial_ratio?
@maxbachmann Is it possible to know an exact match (Sentence2) different from a partial match (Sentence1) while using fuzz.partial_ratio?