Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
punctuation as junk solution in Clear category for Caesar Cipher (decryptor) by veky
def to_decrypt(text, delta):
from string import ascii_lowercase as alphabet, punctuation as junk
shifted = alphabet[delta:] + alphabet[:delta]
return text.translate(str.maketrans(alphabet, shifted, junk))
March 10, 2018
Comments: