python replace string character at index code example
Example: python string replace index
# strings are immutable in Python,
# we have to create a new string which
# includes the value at the desired index
s = s[:index] + newstring + s[index + 1:]