3b

 avatar
unknown
python
6 months ago
175 B
10
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