def missing_char(str,n):
front = str[:n]
back = str[n+1:]
return front + back
I don't really understand what is being said when back is defined, and furthermore I don't understand how this actually takes out the letter you specify when you enter a word into the function with the "return front + back" part.
Thanks everyone for the help, you all made me understand it better :).