如果您需要在 Python 中替换多个字符串,可以使用多个 replace() 方法,或者使用正则表达式。下面是这两种方法的示例代码:

使用多个 replace() 方法:
# 定义原始字符串
text = "This is a sample string with some words that need to be replaced."

# 依次替换多个字符串
text = text.replace("sample", "example").replace("words", "phrases").replace("replaced", "substituted")

# 输出结果
print(text)

标签: none

添加新评论