python 替换文本中drop为ddd
时间: 2024-05-04 10:19:42 浏览: 120
python 实现批量替换文本中的某部分内容
可以使用 Python 的字符串方法 `replace()` 来替换文本中的字符串。以下是一个示例代码:
```python
text = "This is a test string. I want to drop some words from it."
new_text = text.replace("drop", "ddd")
print(new_text)
```
输出结果为:
```
This is a test string. I want to ddd some words from it.
```
在上面的代码中,我们首先定义了一个字符串 `text`,它包含了我们要替换的字符串 "drop"。然后使用 `replace()` 方法将 "drop" 替换为 "ddd",并将替换后的字符串保存到变量 `new_text` 中。最后,使用 `print()` 函数将替换后的字符串输出到控制台。
阅读全文