replace() 是字符串的一个方法,用于替换指定的字符串,语法为 replace(old, new[, count])
In [6]: str = 'hello world' In [7]: str.replace('l', 'L') # 把小写的l替换成大写的L Out[7]: 'heLLo worLd' In [8]: str.replace('l', 'L', 2) # 第三个参数表示替换的次数 Out[8]: 'heLLo world'