What does Python string immutability imply?
Methods such as replace alter the original object in place.
replace
Individual characters cannot be read by index.
A variable holding a string can never be rebound to another string.
Characters cannot be assigned in place; operations that appear to modify a string produce a new string value.