python .replace
时间: 2024-04-04 11:28:16 浏览: 63
replace.py
Python中的.replace()是一个字符串方法,用于将字符串中的指定子串替换为新的子串。它的语法如下:
```python
new_string = old_string.replace(old_substring, new_substring)
```
其中,old_string是原始字符串,old_substring是要被替换的子串,new_substring是替换后的新子串。该方法返回一个新的字符串,原始字符串不会被修改。
例如,我们有一个字符串"Hello, World!",我们想将其中的"World"替换为"CSDN",可以使用.replace()方法:
```python
string = "Hello, World!"
new_string = string.replace("World", "CSDN")
print(new_string)
```
输出结果为:"Hello, CSDN!"
阅读全文