在Python中,replace()
是一个字符串方法,用于替换字符串中的指定内容。
replace()
方法的语法如下:
string.replace(old, new, count)
其中,string
是要进行替换操作的字符串,old
是要被替换的内容,new
是替换后的内容,count
是可选参数,指定要替换的次数。
下面是一个使用replace()
方法的示例:
string = "Hello World!"
new_string = string.replace("World", "Python")
print(new_string)
输出结果为:Hello Python!
在上述示例中,replace()
方法将字符串中的"World"替换为"Python",并返回替换后的新字符串。
如果要指定替换的次数,可以将count
参数设置为大于0的整数值。例如:
string = "Hello World!"
new_string = string.replace("o", "O", 2)
print(new_string)
输出结果为:HellO WOrld!
在上述示例中,replace()
方法将字符串中的前两个小写字母"o"替换为大写字母"O"。