Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created January 16, 2018 13:17
Show Gist options
  • Save Fhernd/555628de63e0eabb8a013b3692715c9c to your computer and use it in GitHub Desktop.
Save Fhernd/555628de63e0eabb8a013b3692715c9c to your computer and use it in GitHub Desktop.
Traduccion en Python.
escritor = 'Dickens'
mapa_traduccion = escritor.maketrans('iz', 'yz')
traduccion = escritor.translate(mapa_traduccion)
print(traduccion)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment