python替换字符串中的值
时间: 2024-05-02 17:22:43 浏览: 115
您可以使用 Python 的 `replace()` 函数来替换字符串中的值。例如:
```python
string = "Hello World"
new_string = string.replace("World", "Universe")
print(new_string)
```
输出结果为:
```python
Hello Universe
```
在这个例子中,`replace()` 函数将字符串 `World` 替换为字符串 `Universe`。
阅读全文