Recuerda que en las ciencias informáticas cualquier problema suele tener diversas soluciones, así que compartimos la mejor y más eficiente.
Ejemplo: cómo cifrar texto en python
text =input()defencrypt(t):
chars =list(text)
allowed_characters =list(" abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789,.?!")for char in chars:for i in allowed_characters:if char == i:
chars[chars.index(char)]= allowed_characters.index(i)return chars
print(encrypt(text))
Más adelante puedes encontrar las reseñas de otros programadores, tú además tienes la habilidad mostrar el tuyo si lo deseas.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)