python替换字符
时间: 2023-06-29 17:20:07 浏览: 59
字符替换工具
要替换一个字符串中的特定字符,可以使用Python中的replace()函数。例如,如果我们想将字符串“hello world”中的“o”替换为“e”,可以这样做:
```
string = "hello world"
new_string = string.replace("o", "e")
print(new_string)
```
这将输出“helle werld”。 replace()函数将找到所有匹配的字符并将其替换为新字符。如果要替换字符串中的所有匹配项,可以使用正则表达式。
阅读全文