def compare_strings_by_edit_distance(first=None, second=None):
"""
Get the edit distance between the two strings passed to this method.
:param first: The first string to compare.
:param second: The second string to compare.
:return: A number representing the edit distance between the two strings passed
as arguments to this method.
"""
return editdistance.eval(first, second)
# Class Methods
# Public Methods
# Protected Methods
# Private Methods
# Properties
# Representation and Comparison
评论列表
文章目录