Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Speckies & Acorns solution in Clear category for Caesar Cipher (encryptor) by Tinus_Trotyl
def to_encrypt(text, delta):
return "".join(ch if ch == " " else chr(((ord(ch) - 97 + delta) % 26) + 97) for ch in text)
March 9, 2018