I'm calculating the levenshtein distance for some strings. Only the one with a distance of 1 I want to analyze further. What I'm interested in, above all, is the position of the character that makes the distance. So for example;
('rodange', 'redange', 1) # position 2
I can think of a couple of ways to get there but they seem not very handy (like looping through all characters and comparing them one by one). Something out there already?