metric

Find the similarity metric between two strings

Find the similarity metric between two strings Question: How do I get the probability of a string being similar to another string in Python? I want to get a decimal value like 0.9 (meaning 90%) etc. Preferably with standard Python and library. e.g. similar(“Apple”,”Appel”) #would have a high prob. similar(“Apple”,”Mango”) #would have a lower prob. …

Total answers: 16