python 中替换字符串中所有关键字
时间: 2024-05-05 20:19:07 浏览: 77
python字符串替换的2种方法
的方法是什么?
在Python中替换字符串中所有关键字的方法是使用字符串的replace方法,例如:
```
string = "this is a keyword example"
new_string = string.replace("keyword", "replacement")
print(new_string)
```
这将输出“this is a replacement example”。要替换多个关键字,可以多次调用replace方法或使用正则表达式。
阅读全文