n = utils.edit_distance (word1, word2)
This returns the Levenshtein Edit Distance between the two words. This is the same behaviour as the world.EditDistance function. eg. print (EditDistance ("food", "fodder")) --> 3
print (EditDistance ("food", "fodder")) --> 3