Python - 替换字符串中重复的出现


如果需要在字符串中重复重复出现的项,可以使用 key、‘index’ 方法和列表解析。

列表解析是对列表进行迭代并对其执行操作的简写形式。

‘index’ 方法返回特定值/可迭代项的索引。

以下是对此进行演示:

示例

 演示

my_str = 'Jane is the best . Jane loves to cook. Jane and Will cook together'
print("The string is : ")
print(my_str)
replace_dict = {'Jane' : 'She' }
my_list = my_str.split(' ')
my_result = ' '.join([replace_dict.get(val) if val in replace_dict.keys() and my_list.index(val) != idx else val for idx, val in enumerate(my_list)])
print("The string after replacing with values is : ")
print(my_result)

输出

The string is :
Jane is the best . Jane loves to cook. Jane and Will cook together
The string after replacing with values is :
Jane is the best . She loves to cook. She and Will cook together

说明

  • 定义一个字符串,并显示在控制台上。
  • 定义字典,借助它需要替换的值。
  • 访问字典的 key,并用特定值替换它们。
  • 此操作的数据分配给一个变量。
  • 然后将其显示为控制台上的输出。

更新时间: 11-3-2021

617 次浏览

开启你的 职业生涯

完成课程认证

立即开始
广告