在Python中,可以使用replace函数来替换字符串中的子字符串。
replace函数的使用方式是:str.replace(old, new, count)
下面是一个使用replace函数的示例:
str = "Hello, World!"
new_str = str.replace("Hello", "Hi")
print(new_str) # 输出: Hi, World!
在上面的示例中,我们将字符串中的"Hello"替换为"Hi",并将结果赋给变量new_str。最后输出的结果是"Hi, World!"。
另外,replace函数还可以用来删除指定子字符串。只需要将new_str参数指定为空字符串即可。
str = "Hello, World!"
new_str = str.replace("Hello", "")
print(new_str) # 输出: , World!
在上面的示例中,我们将字符串中的"Hello"替换为空字符串,即删除了"Hello"这个子字符串。最后输出的结果是", World!"。