<div dir="ltr">Hey everyone,<div><br></div><div>I'm encountering a problem with a python function that I am supposed to create. I want my function to look at a string, and then replace each letter in the string with its relative position in the alphabet. for example, 'abcde' would return '12345', 'zabd' would return '4123', and 'xpft' would return '4213'. I have been given hints that tell me "<span style="color:rgb(0,0,0);font-family:Arial;font-size:13px">You may want to iterate over the letters ch in s as in the for loop above, and inside that for loop, count the number of letters that are in s and come before the loop variable ch. You will also need an accumulator to build the permutation the function will return." any help would be greatly appreciated.</span></div>
<div><span style="color:rgb(0,0,0);font-family:Arial;font-size:13px"><br></span></div><div><span style="color:rgb(0,0,0);font-family:Arial;font-size:13px">Many thanks!</span></div></div>