python的replace代码怎么用
时间: 2024-03-24 12:15:46 浏览: 58
replace()方法是字符串对象的方法,用于替换字符串中的一些字符或子字符串。
语法如下:
```python
new_string = str.replace(old, new[, count])
```
其中,str是原始字符串,old是要被替换的字符串或字符,new是新的字符串或字符,count是可选参数,表示替换的次数。
示例:
```python
string = "Hello World"
new_string = string.replace("o", "e")
print(new_string) # "Helle Werld"
```
在上面的示例中,字符串“Hello World”中的所有字母“o”被替换成了字母“e”,生成了一个新的字符串“Helle Werld”。
另一个示例:
```python
string = "Python is great, Python is easy to learn"
new_string = string.replace("Python", "Java", 1)
print(new_string) # "Java is great, Python is easy to learn"
```
在上面的示例中,字符串“Python is great, Python is easy to learn”中的第一个“Python”被替换成了“Java”,生成了一个新的字符串“Java is great, Python is easy to learn”。由于指定了替换次数为1,所以只有第一个匹配的“Python”被替换了。
阅读全文