python字符串的replace方法将字符串中的 old 替换成 new,如果 max 指定,则替换不超过 count 次
方法定义如下
def replace(self, old, new, count=None):
pass
先来看一个简单的示例
word = 'python'
print(word.replace('p', 'cp')) # cpython
你可以指定替换的次数
word = 'aaaa'
print(word.replace('a', 'b', 3)) # bbba
QQ交流群: 211426309