Python strings are immutable so what you are trying to do in C will be simply impossible in python. You will have to create a new string.
I would like to read some characters from a string and put it into other string.
Then use a string slice:
>>> s1 = 'Hello world!!'
>>> s2 = s1[6:12]
>>> print s2
world!