gpt4 book ai didi

python - Python中的多个字符串替换

转载 作者:太空宇宙 更新时间:2023-11-04 09:07:56 25 4
gpt4 key购买 nike

这是我的代码:

line = input('Line: ')
if 'a' in line:
print(line.replace('a', 'afa'))
elif 'e' in line:
print(line.replace('e', 'efe'))

这显然还没有完成,但我想知道,假设有一个'a'和一个'e',我如何在同一个语句中替换它们?

最佳答案

为什么不呢:

import re

text = 'hello world'
res = re.sub('([aeiou])', r'\1f\1', text)
# hefellofo woforld

关于python - Python中的多个字符串替换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18275538/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com