python replace的基本用法

2023-03-16 00:00:00 python replace 用法

在Python中,replace() 方法用于将字符串中的指定子字符串替换为新的子字符串。该方法返回一个新的字符串,原始字符串不会被修改。

下面是 replace() 方法的语法:

string.replace(old_substring, new_substring, count)

其中,string 表示要进行替换的原始字符串;old_substring 表示要替换的子字符串;new_substring 表示用于替换 old_substring 的新字符串;count 是可选参数,表示要替换的最大次数。如果不指定 count 参数,则会替换所有匹配项。

以下是一个示例,演示如何使用 replace() 方法将字符串中的一个子字符串替换为另一个子字符串:

string = "Hello, World!"
new_string = string.replace("World", "Python")
print(new_string)

输出结果:

Hello, Python!

在上面的示例中,我们将原始字符串 "Hello, World!" 中的子字符串 "World" 替换为 "Python",并将替换后的新字符串赋值给了变量 new_string。最后打印出 new_string,结果为 "Hello, Python!"。

相关文章