3b
unknown
python
10 months ago
175 B
11
Indexable
from difflib import SequenceMatcher
str_1 = input("")
str_2 = input("")
match = SequenceMatcher(None,str_1,str_2)
similarity = match.ratio()
print(similarity)Editor is loading...
Leave a Comment