python中replace
时间: 2023-11-06 14:02:59 浏览: 60
replace.py
replace() 是 Python 字符串中的一个方法,它可以用来替换字符串中的指定子字符串。它的语法如下:
```python
string.replace(old, new[, count])
```
其中,string 表示要进行替换操作的字符串,old 表示要被替换的子字符串,new 表示要替换成的新字符串,count 表示要替换的次数(可选参数,默认为全部替换)。
例如:
```python
text = "Hello, World!"
new_text = text.replace("World", "Python")
print(new_text)
```
输出结果为:
```
Hello, Python!
```
阅读全文