How to change a string



examples/strings/change_a_string.py
text = "abcd"
print(text)      # abcd

text = text[:2] + 'Y' + text[3:]
print(text)      # abYd