This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import string | |
from numpy import roll | |
letters = string.lowercase | |
transition = ''.join(roll(list(letters), -2)) | |
trans = string.maketrans(letters, transition) | |
text = "g fmnc wms bgblr rpylqjyrc gr zw fylb. rfyrq ufyr amknsrcpq ypc dmp. bmgle gr gl zw fylb gq glcddgagclr ylb rfyr'q ufw rfgq rcvr gq qm jmle. sqgle qrpgle.kyicrpylq() gq pcamkkclbcb. lmu ynnjw ml rfc spj." | |
print text.translate(trans) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment