python的的字符串是一个字符串常量,不能直接修改其中的字符。如果强制修改会报错:

str1 = ‘heloo world’

str1[3] = 'l'

这是运行程序会报错如下:TypeError: 'str' object does not support item assignment,要想修改必须新建一个字符串

方法1:将字符串转换成list列表,然后用join函数组成一个新的字符串

str1 = ‘heloo world’

list_str1 = list(str1)

list_str1[3] = 'l'

str2 = ''.join(list_str1)

方法2:使用replace函数

str1 = 'heloo world'

str1 = str1.replace('o','l')

需要注意的是 上面的操作会把str1字符串中所有‘o’都替换成‘l’