可变字符串
在Python中,字符串属于不可变对象,不支持原地修改,如果需要修改其中的值,智能创建新的字符串对象,但是,我们确实需要原地修改字符串,可以使用io.StringIO对象或array模块
import io
s="hello,world"
sio=io.StringIO(s) #新生成一个可变对象
print(sio)
>>> <_io.StringIO object at 0x0000019528C6CAF8>
sio.getvalue() #获取对象值
>>>'hello,world'
sio.seek(7) #让指针移动指定的字符,比如移动第7个字符
sio.write("8") #输入修改的值
sio.getvalue() #再次打印
>>>'hello,w8rld'