Python中怎么用replace()一次替换多个不同的字符串

avatar
作者
筋斗云
阅读量:4

可以使用字典来一次替换多个不同的字符串,例如:

text = "Hello World! This is a test." replace_dict = {"Hello": "Hi", "World": "Earth", "test": "example"} new_text = text for old_str, new_str in replace_dict.items():     new_text = new_text.replace(old_str, new_str)  print(new_text) 

这段代码中,首先定义了一个包含要替换的字符串和对应替换字符串的字典replace_dict,然后使用for循环遍历字典中的键值对,对原始文本进行替换操作,最后打印出替换后的文本。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!