python中替换函数是哪个

python中替换函数是replace(),该函数语法格式为:“str.replace(old, new[, max])”,它主要是将字符串中的旧字符串替换成新字符串,如果指定第三个参数max,则替换不超过max次。

python中替换函数是哪个

具体使用步骤:

1、首先打开python编辑器,新建一个python项目。

2、在python项目中定义一个字符串。

str = "this is string example....wow!!! this is really string";

3、最后再通过replace()函数进行替换字符串即可。

print str.replace("is", "was");

完整示例代码:

#!/usr/bin/python

#www.yisu.com

str = "this is string example....wow!!! this is really string";

print str.replace("is", "was");

print str.replace("is", "was", 3);

输出结果:

thwas was string example....wow!!! thwas was really string

thwas was string example....wow!!! thwas is really string

扩展知识:

strip() #删除指定字符串函数

re.sub() #通过正则表达式替换

我们的服务
专业提供中小企业网站建设.公司网站建设.外贸网站建设.营销型网站建设,响应式网站建设,商城网站定制,手机网站,微信小程序定制.php应用开发服务,公司成立于2014年,8年专注网站建设,秉承“以客户为根本,以科技为核心,以市场为导向”的经营理念;服务电话13714666846(微信同号)

声明:本站所有作品(图文、音视频)均由用户自行上传分享,或互联网相关知识整合,仅供网友学习交流,若您的权利被侵害,请联系 管理员 删除。

本文链接:http://news.ew35.com/