标签: string python-3.x
我在使用Python在p中给定的元音之后添加string + 元音时遇到问题。
p
string
例如:
如果我写welcome,程序将打印wepelcopomepe。
welcome
wepelcopomepe
答案 0 :(得分:1)
您可以使用 regex 。这是一个示例:
import re s = 'welcome' new_s = re.sub('([aeiou])', '\g<1>p\g<1>', s) print(new_s) > wepelcopomepe