python 字符串替换
时间: 2023-07-06 18:19:34 浏览: 39
在 Python 中,可以使用 `replace` 方法来进行字符串替换。该方法的语法如下:
```python
string.replace(old, new[, count])
```
其中,`string` 是要进行替换的字符串,`old` 是要被替换的子字符串,`new` 是用来替换的新字符串,`count` 是可选参数,用来指定最多替换多少次。
例如,将字符串中的所有空格替换成下划线可以这样写:
```python
string = "hello world"
new_string = string.replace(" ", "_")
print(new_string) # 输出:hello_world
```
如果只想替换前两个空格,可以这样写:
```python
string = "hello world"
new_string = string.replace(" ", "_", 2)
print(new_string) # 输出:hello_world
```
阅读全文