python函数深入浅出 9.replace()函数详解

1.函数名及其来源

replace() 函数命名来源于英文单词replace(替换)。
用于替换字符串中的特定字符

replace 函数的例子:

>>>string = 'abc is very easy.'
>>>string.replace('easy','hard')
'abc is very hard.'

2.函数定义源码及其用法拆解

str.replace(old, new[, max])

replace() 方法把字符串中的 old(旧字符串) 替换成 new(新字符串),如果指定第三个参数max,则替换不超过 max 次

没有找到old字符串则自动跳过

>>>str = "this is string example....wow!!!"
>>>print (str.replace("is", "was", 3))
thwas was string example....wow!!!

3.版本差异

无版本差异

4.学习建议

替换字符串还有一种方式是通过re库用正则的方式替换
例如:

import re 
p = re.compile(‘o’)
string = ' G00d g00d study, day day up!' #将手误写错的数字0替换为字母o
a = re.sub('0','o',string,4) 
print(a)
#输出结果为
 Good good study, day day up!

如果不能理解的可以之后学习相关知识再回头来看

对基础运行环境有疑问的,推荐参考:python函数深入浅出 0.基础篇

你可能感兴趣的:(python函数深入浅出 9.replace()函数详解)