There is a string, for example. EXAMPLE.
EXAMPLE
How can I remove the middle character, i.e., M from it? I don\'t need the code. I want to know:
M
UserString.MutableString
Mutable way:
import UserString s = UserString.MutableString("EXAMPLE") >>> type(s) # Delete 'M' del s[3] # Turn it for immutable: s = str(s)