python中replace如何使用
时间: 2024-08-15 12:03:44 浏览: 68
Python3 replace()函数使用方法
在Python中,`str.replace()` 方法用于替换字符串中的指定字符或子串。它的基本语法如下:
```python
original_string = "要替换的内容"
new_substring = "新的内容"
result_string = original_string.replace(original_substring, new_substring)
```
这个方法会返回一个新的字符串,其中所有的 `original_substring` 都已被 `new_substring` 替换。如果原始字符串中不存在 `original_substring`,那么原样返回原始字符串。
例如,如果你有一个句子 "Hello, World!",你可以使用 `replace()` 来将 "World" 替换为 "Python":
```python
sentence = "Hello, World!"
new_sentence = sentence.replace("World", "Python")
print(new_sentence) # 输出: "Hello, Python!"
```
阅读全文