1,replace()方法
用途:用一个新的子串替换字符串中的指定子串
语法:
str.replace(old, new [, count])
old :字符串中要被替换掉的子串
new :用来替换 substr 的新的子串。
count : 最多替换几个出现的子串 substr。
此参数可选,如果省略它,表示替换字符串中出现的所有子串 substr
返回:替换完指定子字符串的新字符串
1,替换字符串不指定次数,即:替换所有出现的子串
# 原始字符串
orig = "您可访问http://weib.com或http://baidu.com"
# 替换字符串
new_string = orig.replace("http", "https")
# 输出结果
print(new_string) # 您可访问https://weib.com或https://baidu.com
运行结果:
您可访问https://weib.com或https://baidu.com
2,替换字符串时,指定次数为替换1次