文章目录
  1. 1. python string set charactor

python string set charactor


因为python中的字符串是不可改变的,那么如何来改变一个python string的某一个字符呢?比如a=”abcdefg”,a[1] = e

可以通过list来改变

a = “abcdefg”
s = list(a)
s[1] = e
b = “”.join(s)

文章目录
  1. 1. python string set charactor