python 替换字符函数
时间: 2023-07-06 19:25:48 浏览: 86
Python 中替换字符的函数是 `replace()`,它可以用于替换字符串中的指定字符或字符串。该函数的语法为:
```
str.replace(old, new[, count])
```
其中,`str` 是要进行替换操作的字符串;`old` 是要被替换的字符或字符串;`new` 是新的字符或字符串,用于替换 `old`;`count` 是可选参数,用于指定替换的次数,如果不指定,则默认替换所有匹配的字符或字符串。
例如,将字符串中的所有空格替换为下划线,可以使用以下代码:
```python
str = "Hello, world! This is a test."
new_str = str.replace(" ", "_")
print(new_str)
```
输出结果为:
```
Hello,_world!_This_is_a_test.
```
相关问题
python替换字符串函数
Python中替换字符串函数是replace()。可以使用该函数将字符串中指定的子串替换为新的字符串。例如:
```
str1 = "Hello World"
str2 = str1.replace("World", "Python")
print(str2) # 输出:Hello Python
```
阅读全文