Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/data/string/jeringoso
diff options
context:
space:
mode:
authorDarío Clavijo <daedalus2027@gmail.com>2010-05-25 22:34:50 (GMT)
committer Darío Clavijo <daedalus2027@gmail.com>2010-05-25 22:34:50 (GMT)
commitf4529bfe0ed441491b03b541e8595adaa30cc9ff (patch)
tree33044b7c72bbbbd9bd32e93263ceb50839156503 /data/string/jeringoso
parentf7e7b974f61731333cb0d98cdac81a338ee07ec7 (diff)
code transliterated to english
Diffstat (limited to 'data/string/jeringoso')
-rw-r--r--data/string/jeringoso14
1 files changed, 7 insertions, 7 deletions
diff --git a/data/string/jeringoso b/data/string/jeringoso
index 04f451a..e6ad0d5 100644
--- a/data/string/jeringoso
+++ b/data/string/jeringoso
@@ -1,10 +1,10 @@
-texto = raw_input("ingrese el texo para convertir a jeringoso:")
-largo = len(texto)
+text = raw_input("Please imput your text to translate to jeringoso:")
+length = len(text)
jeringoso=""
-for i in range(largo):
- letra = texto[i]
- if letra == "a" or letra == "e" or letra == "i" or letra == "o" or letra == "u":
- jeringoso = jeringoso + letra + "p" + letra
+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 + letra
+ jeringoso = jeringoso + char
print jeringoso