温馨提示×

python的replace怎么使用

小亿
88
2024-01-16 22:10:49
栏目: 编程语言

在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"。

0