I need to replace vowels with the existing vowel + "r" + vowel (eg.: input: "burger" output: "bururgerer").
It would mean this, but I need to write a program that recognizes the given vowel and repeats it.
x = str(input("Please add text: "))
y = x.replace("a","ara").replace("e", "ere").replace("i", "iri")
print(y)