Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Caesar Cipher (encryptor) by Nour
def to_encrypt(text, delta):
return ''.join([chr(((ord(l)-97) + delta) % 26 + 97) if l.isalpha() else l for l in text])
May 2, 2018