更新时间:2021年05月19日15时38分 来源:传智教育 浏览次数:
replace()的作用:
Python replace()方法把字符串中的old(旧字符串)替换成new(新字符串),如果指定第三个参数max,则替换不超过max次。
replace()基本语法:
str.replace(old, new, max)
参数说明:
old:将被替换的子字符串。
new:新字符串,用于替换old子字符串。
max:可选字符串,替换不超过max次
下面使用replace()替换字符串中的字符:
URL = "http://www_itcast_cn/newsvideo/newslist_1.shtml" URL = URL.replace("_", ".", 2) print(URL)运行结果:
猜你喜欢:
matplotlib是什么?matplotib的3中API介绍