Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created July 1, 2020 02:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/51a2e7af9767f2b1a2972a8467066328 to your computer and use it in GitHub Desktop.
Save parzibyte/51a2e7af9767f2b1a2972a8467066328 to your computer and use it in GitHub Desktop.
def jerigonza(original):
traducida = ""
for letra in original:
traducida += letra
if letra.lower() in "aeiou":
traducida += "p" + letra
return traducida
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment