How can I splice a string?
You can't do this since strings in Python are immutable.
Try next:
new_s = ''.join((s[:1], new, s[6:]))
Strings are immutable in Python. The best you can do is construct a new string:
t = s[:1] + "whatever" + s[6:]