Sun Sep 11 10:04:32 2022 levenshtein_distance_test(): Python version: 3.6.9 levenshtein_distance() computes the Levenshtein distance between two strings. S = "water" T = "wine" Computed distance = 3, correct distance = 3 S = "kitten" T = "sitting" Computed distance = 3, correct distance = 3 S = "saturday" T = "sunday" Computed distance = 3, correct distance = 3 S = "pheromones" T = "photographer" Computed distance = 8, correct distance = 8 levenshtein_distance_test(): Normal end of execution. Sun Sep 11 10:04:32 2022