python字符串替换函数
时间: 2023-07-22 17:56:36 浏览: 110
Python中常用操作字符串的函数与方法总结
5星 · 资源好评率100%
在Python中,你可以使用字符串的 `replace()` 方法来替换字符串中的特定部分。该方法接受两个参数:要替换的子字符串和替换后的字符串。以下是一个示例代码:
```python
string = "Hello, world!"
# 将 "world" 替换为 "Python"
new_string = string.replace("world", "Python")
print(new_string)
```
输出结果为:
```
Hello, Python!
```
在这个示例中,我们将字符串 `Hello, world!` 中的 "world" 替换为 "Python",并将结果存储在 `new_string` 变量中。最后,我们打印出替换后的字符串。
值得注意的是,`replace()` 方法会返回一个新的字符串,而不会修改原始字符串。如果原始字符串中不存在要替换的子字符串,`replace()` 方法会返回原始字符串。如果你想替换多个子字符串,可以多次调用 `replace()` 方法。
阅读全文