“Mit Python, wie man Alomost ähnliche Wörter überprüft” Code-Antworten

Mit Python, wie man Alomost ähnliche Wörter überprüft

Str1 = "The supreme court case of Nixon vs The United States"
Str2 = "Nixon v. United States"
Ratio = fuzz.ratio(Str1.lower(),Str2.lower())
Partial_Ratio = fuzz.partial_ratio(Str1.lower(),Str2.lower())
Token_Sort_Ratio = fuzz.token_sort_ratio(Str1,Str2)
Token_Set_Ratio = fuzz.token_set_ratio(Str1,Str2)
print(Ratio)
print(Partial_Ratio)
print(Token_Sort_Ratio)
print(Token_Set_Ratio)
py_hacker

So finden Sie das ähnlichste Wort in einer Liste in Python

difflib.get_close_matches(word, ['words'])

Easy Eel

Ähnliche Antworten wie “Mit Python, wie man Alomost ähnliche Wörter überprüft”

Fragen ähnlich wie “Mit Python, wie man Alomost ähnliche Wörter überprüft”

Weitere verwandte Antworten zu “Mit Python, wie man Alomost ähnliche Wörter überprüft” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache