python 替换字符串
时间: 2024-08-12 21:05:31 浏览: 99
python替换字符串中的子串图文步骤
在Python中,替换字符串可以使用内置的`replace()`函数,它接受两个参数:原始字符或子串以及想要替换成的新字符或子串。下面是一个基本的例子:
```python
original_string = "Hello, World!"
new_string = original_string.replace("World", "Python")
print(new_string)
```
这将输出:`Hello, Python!`
如果你需要进行正则表达式的替换,可以使用`re`模块的`sub()`函数:
```python
import re
string_with_regex = "I love apples, but not bananas."
new_string = re.sub("apples|bananas", "fruits", string_with_regex)
print(new_string)
```
这将输出:`I love fruits, but not fruits.`
阅读全文