text = raw_input("Please imput your text to translate to jeringoso:") length = len(text) jeringoso="" for i in range(length): char = text[i] if char == "a" or char == "e" or char == "i" or char == "o" or char == "u": jeringoso = jeringoso + char + "p" + char else: jeringoso = jeringoso + char print jeringoso