replace()使用方法
时间: 2023-08-07 19:05:17 浏览: 49
javascript中replace使用方法总结
`replace()` 是 Python 内置的字符串方法之一,它可以将字符串中的一个子串替换为另一个指定的子串,并返回新的字符串。`replace()` 方法的语法格式如下:
```
string.replace(old, new[, count])
```
其中:
- `string` : 要进行替换操作的原字符串。
- `old` : 要被替换的子串。
- `new` : 要替换成的新子串。
- `count` : 可选参数。替换的次数。如果指定了该参数,则只替换前 `count` 次出现的子串;如果不指定,则默认替换所有出现的子串。
例如:
```
string = "Hello, World!"
new_string = string.replace("World", "Python")
print(new_string)
```
输出:
```
Hello, Python!
```
阅读全文