This is for a friend and we are brand new to Python.
There is a string, for example EXAMPLE
How can I remove the middle character i.e. M
from it. I don't need the code, what I want to know is
- Do strings in python end in any special character?
- Which is a better way - shifting everything right to left starting from the middle character OR creation of a new string and not copying the middle character?