SyntaxFix
Write A Post
Hire A Developer
Questions
UserString.MutableString
Mutable way:
import UserString s = UserString.MutableString("EXAMPLE") >>> type(s) <type 'str'> # Delete 'M' del s[3] # Turn it for immutable: s = str(s)