Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/data/string/jeringoso
blob: e6ad0d5c42399d14635a514887ad38f4048fc2f8 (plain)
1
2
3
4
5
6
7
8
9
10
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